minitest/Manifest.txt

30 lines
728 B
Plaintext
Raw Normal View History

.autotest
History.rdoc
Manifest.txt
README.rdoc
Rakefile
design_rationale.rb
lib/hoe/minitest.rb
Oh god... here we go. Minitest 5: Deaths in the family: ! MiniTest.runner is dead. No more manager objects. ! MiniTest::Unit#record is dead. Use a Reporter instance instead. ! MiniTest::Unit._run_* is dead. Runnable things are responsible for their own runs. ! MiniTest::Unit.output is dead. No more centralized IO. Major (oft incompatible) changes: ! Renamed MiniTest to Minitest. Your pinkies will thank me. ! Removed MiniTest::Unit entirely. No more manager objects. ! Added Minitest::Runnable. Everything minitest can run subclasses this. ! Renamed MiniTest::Unit::TestCase to Minitest::Test (subclassing Runnable). ! Added Minitest::Benchmark. ! Your benchmarks need to move to their own subclass. ! Benchmarks using the spec DSL have to have "Bench" somewhere in their describe. ! MiniTest::Unit.after_tests moved to Minitest.after_tests ! MiniTest::Unit.autorun is now Minitest.autorun. Just require minitest/autorun pls. ! Removed ParallelEach#grep since it isn't used anywhere. Minor moves: + Moved Assertions module to minitest/assertions.rb + Moved Expectations module to minitest/expectations.rb + Moved Test to minitest/test.rb + Moved everything else in minitest/unit.rb to minitest.rb + minitest/unit.rb is now just a small (user-test only) compatibility layer. Additions: + Added a plugin system that can extend command-line options. + Added Minitest.extensions. + Added Minitest.reporter (only available during startup). + Added Minitest.run(args). This is the very top of any Minitest run. + Added Minitest::Reporter. Everything minitest can report goes through here. + Minitest.reporter is a composite so you can add your own. + Added Minitest::CompositeReporter. Much easier to extend with your own reporters. + Added UnexpectedError, an Assertion subclass, to wrap up errors. + Minitest::Test#run is now freakin' beautiful. 47 -> 17 loc Other: + Removed Object.infect_with_assertions (it was already dead code). + Runnables are responsible for knowing their result_code (eg "." or "F"). [git-p4: depot-paths = "//src/minitest/dev/": change = 8451]
2013-04-25 01:38:14 +00:00
lib/minitest.rb
lib/minitest/assertions.rb
lib/minitest/autorun.rb
lib/minitest/benchmark.rb
Oh god... here we go. Minitest 5: Deaths in the family: ! MiniTest.runner is dead. No more manager objects. ! MiniTest::Unit#record is dead. Use a Reporter instance instead. ! MiniTest::Unit._run_* is dead. Runnable things are responsible for their own runs. ! MiniTest::Unit.output is dead. No more centralized IO. Major (oft incompatible) changes: ! Renamed MiniTest to Minitest. Your pinkies will thank me. ! Removed MiniTest::Unit entirely. No more manager objects. ! Added Minitest::Runnable. Everything minitest can run subclasses this. ! Renamed MiniTest::Unit::TestCase to Minitest::Test (subclassing Runnable). ! Added Minitest::Benchmark. ! Your benchmarks need to move to their own subclass. ! Benchmarks using the spec DSL have to have "Bench" somewhere in their describe. ! MiniTest::Unit.after_tests moved to Minitest.after_tests ! MiniTest::Unit.autorun is now Minitest.autorun. Just require minitest/autorun pls. ! Removed ParallelEach#grep since it isn't used anywhere. Minor moves: + Moved Assertions module to minitest/assertions.rb + Moved Expectations module to minitest/expectations.rb + Moved Test to minitest/test.rb + Moved everything else in minitest/unit.rb to minitest.rb + minitest/unit.rb is now just a small (user-test only) compatibility layer. Additions: + Added a plugin system that can extend command-line options. + Added Minitest.extensions. + Added Minitest.reporter (only available during startup). + Added Minitest.run(args). This is the very top of any Minitest run. + Added Minitest::Reporter. Everything minitest can report goes through here. + Minitest.reporter is a composite so you can add your own. + Added Minitest::CompositeReporter. Much easier to extend with your own reporters. + Added UnexpectedError, an Assertion subclass, to wrap up errors. + Minitest::Test#run is now freakin' beautiful. 47 -> 17 loc Other: + Removed Object.infect_with_assertions (it was already dead code). + Runnables are responsible for knowing their result_code (eg "." or "F"). [git-p4: depot-paths = "//src/minitest/dev/": change = 8451]
2013-04-25 01:38:14 +00:00
lib/minitest/expectations.rb
lib/minitest/hell.rb
lib/minitest/mock.rb
lib/minitest/parallel.rb
lib/minitest/pride.rb
lib/minitest/pride_plugin.rb
lib/minitest/spec.rb
Oh god... here we go. Minitest 5: Deaths in the family: ! MiniTest.runner is dead. No more manager objects. ! MiniTest::Unit#record is dead. Use a Reporter instance instead. ! MiniTest::Unit._run_* is dead. Runnable things are responsible for their own runs. ! MiniTest::Unit.output is dead. No more centralized IO. Major (oft incompatible) changes: ! Renamed MiniTest to Minitest. Your pinkies will thank me. ! Removed MiniTest::Unit entirely. No more manager objects. ! Added Minitest::Runnable. Everything minitest can run subclasses this. ! Renamed MiniTest::Unit::TestCase to Minitest::Test (subclassing Runnable). ! Added Minitest::Benchmark. ! Your benchmarks need to move to their own subclass. ! Benchmarks using the spec DSL have to have "Bench" somewhere in their describe. ! MiniTest::Unit.after_tests moved to Minitest.after_tests ! MiniTest::Unit.autorun is now Minitest.autorun. Just require minitest/autorun pls. ! Removed ParallelEach#grep since it isn't used anywhere. Minor moves: + Moved Assertions module to minitest/assertions.rb + Moved Expectations module to minitest/expectations.rb + Moved Test to minitest/test.rb + Moved everything else in minitest/unit.rb to minitest.rb + minitest/unit.rb is now just a small (user-test only) compatibility layer. Additions: + Added a plugin system that can extend command-line options. + Added Minitest.extensions. + Added Minitest.reporter (only available during startup). + Added Minitest.run(args). This is the very top of any Minitest run. + Added Minitest::Reporter. Everything minitest can report goes through here. + Minitest.reporter is a composite so you can add your own. + Added Minitest::CompositeReporter. Much easier to extend with your own reporters. + Added UnexpectedError, an Assertion subclass, to wrap up errors. + Minitest::Test#run is now freakin' beautiful. 47 -> 17 loc Other: + Removed Object.infect_with_assertions (it was already dead code). + Runnables are responsible for knowing their result_code (eg "." or "F"). [git-p4: depot-paths = "//src/minitest/dev/": change = 8451]
2013-04-25 01:38:14 +00:00
lib/minitest/test.rb
lib/minitest/test_task.rb
lib/minitest/unit.rb
test/minitest/metametameta.rb
test/minitest/test_minitest_assertions.rb
test/minitest/test_minitest_benchmark.rb
test/minitest/test_minitest_mock.rb
test/minitest/test_minitest_reporter.rb
test/minitest/test_minitest_spec.rb
test/minitest/test_minitest_test.rb
test/minitest/test_minitest_test_task.rb