diff options
author | Matthew Draper <matthew@trebex.net> | 2014-09-05 23:32:48 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2014-09-05 23:33:27 +0930 |
commit | 7025d7769dc53f0a3ffab8b537727ef3fee367fc (patch) | |
tree | e4e8a40012274aa5003357a86848bc9004dd51e2 /actionview | |
parent | 4c440a54e9d4f360ff1f0c208a5977758f71f950 (diff) | |
download | rails-7025d7769dc53f0a3ffab8b537727ef3fee367fc.tar.gz rails-7025d7769dc53f0a3ffab8b537727ef3fee367fc.tar.bz2 rails-7025d7769dc53f0a3ffab8b537727ef3fee367fc.zip |
For now, we will keep sorting the tests.
This reverts commits e969c928463e329fd6529ac59cad96385c538ffb and
bd2b3fbe54e750ba97469a7896e8d143d6dfd465.
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/Rakefile b/actionview/Rakefile index 3a8bcc4dfe..d56fe9ea76 100644 --- a/actionview/Rakefile +++ b/actionview/Rakefile @@ -18,7 +18,7 @@ namespace :test do Rake::TestTask.new(:template) do |t| t.libs << 'test' - t.test_files = Dir.glob('test/template/**/*_test.rb') + t.test_files = Dir.glob('test/template/**/*_test.rb').sort t.warning = true t.verbose = true end |