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
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
..
api
application Revert "removing Rack::Runtime from the default stack." 2015-10-03 14:21:31 -07:00
commands Use the PORT environment variable for rails server 2015-08-18 08:43:11 -04:00
console modify console of app method in that can use the path helpers 2015-06-05 18:38:53 +09:00
engine Stop modifying global variables 2015-09-29 14:03:09 -04:00
generators Merge branch 'master' of github.com:rails/docrails 2015-10-04 12:33:14 +00:00
rack Tiny documentation edits [ci skip] 2015-05-04 14:43:41 +02:00
railtie
tasks Replace AR with ActiveRecord to make it more readable [ci skip] 2015-09-08 16:02:16 +05:30
templates Update the URL when changing mailer preview formats 2015-10-06 13:32:07 -07:00
test_unit Hide Minitest's aggregated results if outputting inline. 2015-10-07 22:49:41 +02:00
all.rb
app_loader.rb Remove redundant 'Rails' from Rails::AppRailsLoader constant 2015-05-21 16:50:41 +10:00
application.rb Merge branch 'master' of github.com:rails/docrails 2015-10-04 12:33:14 +00:00
application_controller.rb stop using deprecated render :text in railties 2015-08-06 15:50:28 +09:00
backtrace_cleaner.rb
cli.rb 💣 Fix another leftover 2015-05-27 21:59:00 -03:00
code_statistics.rb
code_statistics_calculator.rb
commands.rb
configuration.rb Engines get different middleware than apps 2015-09-29 13:35:13 -07:00
engine.rb Merge pull request #20986 from radar/rails-engine-caller-locations 2015-10-04 20:46:54 -04:00
gem_version.rb
generators.rb Fix strange messages for rails g foo 2015-09-07 17:42:27 +09:00
info.rb
info_controller.rb Fix URI.escape is obsolete warnings 2015-05-05 05:22:53 +01:00
initializable.rb
mailers_controller.rb Use Mime[:foo] instead of Mime::Type[:FOO] for back compat 2015-10-06 11:29:30 -07:00
paths.rb Tiny documentation fixes [ci skip] 2015-08-16 14:16:20 +02:00
rack.rb
railtie.rb
ruby_version_check.rb
source_annotation_extractor.rb fix path of annotations.rake [ci skip] 2015-08-20 21:46:21 +09:00
tasks.rb Only load statistics.rake once from inside engine 2015-08-06 17:34:29 -03:00
test_help.rb Add :nodoc: for internal testing methods [ci skip] 2015-07-28 12:22:37 +02:00
version.rb
welcome_controller.rb