1- = minitest/{unit ,spec,mock,benchmark}
1+ = minitest/{test ,spec,mock,benchmark}
22
33home :: https://github.com/seattlerb/minitest
44bugs :: https://github.com/seattlerb/minitest/issues
@@ -27,7 +27,7 @@ It provides a rich set of assertions to make your tests clean and
2727readable.
2828
2929minitest/spec is a functionally complete spec engine. It hooks onto
30- minitest/unit and seamlessly bridges test assertions over to spec
30+ minitest/test and seamlessly bridges test assertions over to spec
3131expectations.
3232
3333minitest/benchmark is an awesome way to assert the performance of your
@@ -41,7 +41,7 @@ object framework.
4141minitest/pride shows pride in testing and adds coloring to your test
4242output. I guess it is an example of how to write IO pipes too. :P
4343
44- minitest/unit is meant to have a clean implementation for language
44+ minitest/test is meant to have a clean implementation for language
4545implementors that need a minimal set of methods to bootstrap a working
4646test suite. For example, there is no magic involved for test-case
4747discovery.
@@ -268,7 +268,7 @@ Ideally, you'll use a rake task to run your tests, either piecemeal or
268268all at once. Both rake and rails ship with rake tasks for running your
269269tests. BUT! You don't have to:
270270
271- % ruby -Ilib:test test/minitest/test_minitest_unit .rb
271+ % ruby -Ilib:test test/minitest/test_minitest_test .rb
272272 Run options: --seed 37685
273273
274274 # Running:
@@ -282,7 +282,7 @@ tests. BUT! You don't have to:
282282There are runtime options available, both from minitest itself, and also
283283provided via plugins. To see them, simply run with +--help+:
284284
285- % ruby -Ilib:test test/minitest/test_minitest_unit .rb --help
285+ % ruby -Ilib:test test/minitest/test_minitest_test .rb --help
286286 minitest options:
287287 -h, --help Display this help.
288288 -s, --seed SEED Sets random seed
0 commit comments