1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/test_unit
Kasper Timm Hansen da832016bf Hide Minitest's aggregated results if outputting inline.
We'd see the failures and errors reported after the run, which is needless, when we've already
reported them.

Turns:

```

.......................................S....................F

This failed

bin/rails test test/models/bunny_test.rb:14

....

Finished in 0.100886s, 1020.9583 runs/s, 1001.1338 assertions/s.

  2) Failure:
BunnyTest#test_something_failing [/Users/kasperhansen/Documents/code/collection_caching_test/test/models/bunny_test.rb:15]:
This failed

103 runs, 101 assertions, 1 failures, 0 errors, 1 skips

You have skipped tests. Run with --verbose for details.
```

Into:

```

...................S.......................................F

This failed

bin/rails test test/models/bunny_test.rb:14

......................

Finished in 0.069910s, 1473.3225 runs/s, 1444.7143 assertions/s.

103 runs, 101 assertions, 1 failures, 0 errors, 1 skips
```
2015-10-07 22:49:41 +02:00
..
minitest_plugin.rb Hide Minitest's aggregated results if outputting inline. 2015-10-07 22:49:41 +02:00
railtie.rb Revert "Merge pull request #12778 from etehtsea/rake-default-fix" 2014-05-28 17:43:45 +02:00
reporter.rb Add fail fast to test runner. 2015-09-29 08:37:33 +02:00
test_requirer.rb raise LoadError when a non-existent file or directory is specified to the test runner 2015-09-07 08:13:50 +09:00
testing.rake modify to pass the correct argument to the test runner from rake 2015-09-08 08:07:29 +09:00