1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #24680 from mohitnatoo/rake-dev-cache

using rails dev:cache instead of rake dev:cache
This commit is contained in:
Kasper Timm Hansen 2016-04-21 21:30:58 +02:00
commit 5d4a023cdb

View file

@ -34,7 +34,7 @@ module ApplicationTests
Dir.chdir(app_path) do
FileUtils.mkdir_p("tmp/pids")
FileUtils.touch("tmp/pids/server.pid")
`rake dev:cache`
`rails dev:cache`
assert_not File.exist?("tmp/pids/server.pid")
end
end