diff options
author | Chuck Callebs <chuck@callebs.io> | 2015-11-30 16:33:33 -0500 |
---|---|---|
committer | Chuck Callebs <chuck@callebs.io> | 2015-12-04 13:15:43 -0500 |
commit | 2ddb5997108c4612dd96747fb082ba7f93427a31 (patch) | |
tree | 7a32413f5855514f88d8cf0d7e88147962ef03b8 /railties/test/commands | |
parent | 8bdbf88dfd231f80b8e757b36e77ff72e6b6b83c (diff) | |
download | rails-2ddb5997108c4612dd96747fb082ba7f93427a31.tar.gz rails-2ddb5997108c4612dd96747fb082ba7f93427a31.tar.bz2 rails-2ddb5997108c4612dd96747fb082ba7f93427a31.zip |
Add Rails command infrastructure and encapsulate development caching
Diffstat (limited to 'railties/test/commands')
-rw-r--r-- | railties/test/commands/dev_cache_test.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/railties/test/commands/dev_cache_test.rb b/railties/test/commands/dev_cache_test.rb new file mode 100644 index 0000000000..f3612070c6 --- /dev/null +++ b/railties/test/commands/dev_cache_test.rb @@ -0,0 +1,32 @@ +require_relative '../isolation/abstract_unit' + +module CommandsTests + class DevCacheTest < ActiveSupport::TestCase + include ActiveSupport::Testing::Isolation + + def setup + build_app + end + + def teardown + teardown_app + end + + test 'dev:cache creates file and outputs message' do + Dir.chdir(app_path) do + output = `rails dev:cache` + assert File.exist?('tmp/caching-dev.txt') + assert_match(%r{Development mode is now being cached}, output) + end + end + + test 'dev:cache deletes file and outputs message' do + Dir.chdir(app_path) do + output = `rails dev:cache` + output = `rails dev:cache` + assert_not File.exist?('tmp/caching-dev.txt') + assert_match(%r{Development mode is no longer being cached}, output) + end + end + end +end |