aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-03-04 17:19:22 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2016-03-04 17:19:22 +0100
commit38fa9859fd0b042e341757f86e4514639988173e (patch)
tree8788e66a73f37578f24b2bece2756ac414951d58 /railties/test
parent708145206e4bdf42d0fc328f2f001b258556e4ba (diff)
parent4d0c46f6c6c4460d620c308e1cdd166e7e3762bf (diff)
downloadrails-38fa9859fd0b042e341757f86e4514639988173e.tar.gz
rails-38fa9859fd0b042e341757f86e4514639988173e.tar.bz2
rails-38fa9859fd0b042e341757f86e4514639988173e.zip
Merge pull request #24053 from mohitnatoo/rails-dev-cache
using rails dev:cache instead of rake dev:cache in test case
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/application/rake/dev_test.rb2
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