mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b181297ad7
Fixes #18876. Rake restart touches `tmp/restart.txt` to restart application on next request. Updated tests and documentation accordingly.
31 lines
708 B
Ruby
31 lines
708 B
Ruby
require "isolation/abstract_unit"
|
|
|
|
module ApplicationTests
|
|
module RakeTests
|
|
class RakeRestartTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def setup
|
|
build_app
|
|
boot_rails
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
test 'rake restart touches tmp/restart.txt' do
|
|
Dir.chdir(app_path) do
|
|
`rake restart`
|
|
assert File.exist?("tmp/restart.txt")
|
|
|
|
prev_mtime = File.mtime("tmp/restart.txt")
|
|
sleep(1)
|
|
`rake restart`
|
|
curr_mtime = File.mtime("tmp/restart.txt")
|
|
assert_not_equal prev_mtime, curr_mtime
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|