aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake/dev_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/application/rake/dev_test.rb')
-rw-r--r--railties/test/application/rake/dev_test.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/railties/test/application/rake/dev_test.rb b/railties/test/application/rake/dev_test.rb
index 28d8b22a37..43d7a5e156 100644
--- a/railties/test/application/rake/dev_test.rb
+++ b/railties/test/application/rake/dev_test.rb
@@ -7,7 +7,6 @@ module ApplicationTests
def setup
build_app
- boot_rails
end
def teardown
@@ -24,8 +23,8 @@ module ApplicationTests
test 'dev:cache deletes file and outputs message' do
Dir.chdir(app_path) do
- output = `rake dev:cache`
- output = `rake dev:cache`
+ `rails dev:cache` # Create caching file.
+ output = `rails dev:cache` # Delete caching file.
assert_not File.exist?('tmp/caching-dev.txt')
assert_match(/Development mode is no longer being cached/, output)
end