aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/commands/dev_cache_test.rb
diff options
context:
space:
mode:
authorChuck Callebs <chuck@callebs.io>2015-11-30 16:33:33 -0500
committerChuck Callebs <chuck@callebs.io>2015-12-04 13:15:43 -0500
commit2ddb5997108c4612dd96747fb082ba7f93427a31 (patch)
tree7a32413f5855514f88d8cf0d7e88147962ef03b8 /railties/test/commands/dev_cache_test.rb
parent8bdbf88dfd231f80b8e757b36e77ff72e6b6b83c (diff)
downloadrails-2ddb5997108c4612dd96747fb082ba7f93427a31.tar.gz
rails-2ddb5997108c4612dd96747fb082ba7f93427a31.tar.bz2
rails-2ddb5997108c4612dd96747fb082ba7f93427a31.zip
Add Rails command infrastructure and encapsulate development caching
Diffstat (limited to 'railties/test/commands/dev_cache_test.rb')
-rw-r--r--railties/test/commands/dev_cache_test.rb32
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