aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/test_unit/minitest_plugin.rb
Commit message (Collapse)AuthorAgeFilesLines
* Avoid crashing when minitest-rails is loaded.Victor Costan2015-07-011-3/+3
| | | | | | | | The improvments to the test runner's integration with minitest in commit b6fc8e25a10cc4abdd03018798b180270d6c5d7f add methods to the Minitest module that refer to the Rails module. Unfortunately, when the minitest-rails gem is loaded, the reference is incorrectly resolved to the Minitest::Rails module.
* Improve test runner's Minitest integration.Kasper Timm Hansen2015-06-041-7/+44
| | | | | | | | | | | This also adds free mix and matching of directories, files and lines filters. Like so: bin/rails test models/post_test.rb test/integration models/person_test.rb:26 You can also mix in a traditional Minitest filter: bin/rails test test/integration -n /check_it_out/
* move `ENV["BACKTRACE"]` support into the TestRunner.Yves Senn2015-03-181-2/+1
|
* Move minitest pluginArthur Neves2015-03-181-0/+15
Minitest Rails plugin should be loaded on test_help, so we report errors even when not running from the runner. Also fix the backtrace