We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414ddf0 commit ec524d9Copy full SHA for ec524d9
README.rdoc
@@ -294,6 +294,18 @@ provided via plugins. To see them, simply run with +--help+:
294
-p, --pride Pride. Show your testing pride!
295
-a, --autotest Connect to autotest server.
296
297
+You can set up a rake task to run all your tests by adding this to your Rakefile:
298
+
299
+ require "rake/testtask"
300
301
+ Rake::TestTask.new(:test) do |t|
302
+ t.libs << "test"
303
+ t.libs << "lib"
304
+ t.test_files = FileList["test/**/test_*.rb"]
305
+ end
306
307
+ task :default => :test
308
309
== Writing Extensions
310
311
To define a plugin, add a file named minitest/XXX_plugin.rb to your
0 commit comments