Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9bf8e30

Browse files
committed
renamed test_minitest_unit.rb to test_minitest_test.rb
[git-p4: depot-paths = "//src/minitest/dev/": change = 10599]
1 parent 90674b8 commit 9bf8e30

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Manifest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ test/minitest/test_minitest_benchmark.rb
2323
test/minitest/test_minitest_mock.rb
2424
test/minitest/test_minitest_reporter.rb
2525
test/minitest/test_minitest_spec.rb
26-
test/minitest/test_minitest_unit.rb
26+
test/minitest/test_minitest_test.rb

README.rdoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
= minitest/{unit,spec,mock,benchmark}
1+
= minitest/{test,spec,mock,benchmark}
22

33
home :: https://github.com/seattlerb/minitest
44
bugs :: https://github.com/seattlerb/minitest/issues
@@ -27,7 +27,7 @@ It provides a rich set of assertions to make your tests clean and
2727
readable.
2828

2929
minitest/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
3131
expectations.
3232

3333
minitest/benchmark is an awesome way to assert the performance of your
@@ -41,7 +41,7 @@ object framework.
4141
minitest/pride shows pride in testing and adds coloring to your test
4242
output. 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
4545
implementors that need a minimal set of methods to bootstrap a working
4646
test suite. For example, there is no magic involved for test-case
4747
discovery.
@@ -268,7 +268,7 @@ Ideally, you'll use a rake task to run your tests, either piecemeal or
268268
all at once. Both rake and rails ship with rake tasks for running your
269269
tests. 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:
282282
There are runtime options available, both from minitest itself, and also
283283
provided 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

Comments
 (0)