diff options
author | Mohit Natoo <mohitnatoo@gmail.com> | 2016-03-04 18:36:49 +0530 |
---|---|---|
committer | Mohit Natoo <mohitnatoo@gmail.com> | 2016-03-04 18:36:49 +0530 |
commit | 4d0c46f6c6c4460d620c308e1cdd166e7e3762bf (patch) | |
tree | ac1c56c5c32a2a49a5a7e640c19ac71abe57be05 /railties/test/application/rake | |
parent | 86071a4049f83d50e5d8300e0bb40808188e7936 (diff) | |
download | rails-4d0c46f6c6c4460d620c308e1cdd166e7e3762bf.tar.gz rails-4d0c46f6c6c4460d620c308e1cdd166e7e3762bf.tar.bz2 rails-4d0c46f6c6c4460d620c308e1cdd166e7e3762bf.zip |
- using rails dev:cache instead of rake dev:cache in test case
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/dev_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/rake/dev_test.rb b/railties/test/application/rake/dev_test.rb index 43d7a5e156..59b46c6e79 100644 --- a/railties/test/application/rake/dev_test.rb +++ b/railties/test/application/rake/dev_test.rb @@ -15,7 +15,7 @@ module ApplicationTests test 'dev:cache creates file and outputs message' do Dir.chdir(app_path) do - output = `rake dev:cache` + output = `rails dev:cache` assert File.exist?('tmp/caching-dev.txt') assert_match(/Development mode is now being cached/, output) end |