diff options
author | Hyonjee Joo <hj2339@columbia.edu> | 2015-02-17 01:11:16 -0500 |
---|---|---|
committer | Hyonjee Joo <hj2339@columbia.edu> | 2015-02-26 15:26:59 -0500 |
commit | b181297ad7f60c6006292ab024ed08a490bdb4f8 (patch) | |
tree | 30d6b3622d147ccbaaa2dbf33f04249d73db133e /railties/test/application/rake | |
parent | 38218929e9b3205a2a731660b3c5527937e1c015 (diff) | |
download | rails-b181297ad7f60c6006292ab024ed08a490bdb4f8.tar.gz rails-b181297ad7f60c6006292ab024ed08a490bdb4f8.tar.bz2 rails-b181297ad7f60c6006292ab024ed08a490bdb4f8.zip |
Created rake restart task.
Fixes #18876. Rake restart touches `tmp/restart.txt` to restart
application on next request. Updated tests and documentation
accordingly.
Diffstat (limited to 'railties/test/application/rake')
-rw-r--r-- | railties/test/application/rake/restart_test.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/railties/test/application/rake/restart_test.rb b/railties/test/application/rake/restart_test.rb new file mode 100644 index 0000000000..35099913fb --- /dev/null +++ b/railties/test/application/rake/restart_test.rb @@ -0,0 +1,31 @@ +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 |