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/application | |
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/application')
-rw-r--r-- | railties/test/application/rake/dev_test.rb | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/railties/test/application/rake/dev_test.rb b/railties/test/application/rake/dev_test.rb deleted file mode 100644 index 28d8b22a37..0000000000 --- a/railties/test/application/rake/dev_test.rb +++ /dev/null @@ -1,35 +0,0 @@ -require 'isolation/abstract_unit' - -module ApplicationTests - module RakeTests - class RakeDevTest < ActiveSupport::TestCase - include ActiveSupport::Testing::Isolation - - def setup - build_app - boot_rails - end - - def teardown - teardown_app - end - - test 'dev:cache creates file and outputs message' do - Dir.chdir(app_path) do - output = `rake dev:cache` - assert File.exist?('tmp/caching-dev.txt') - assert_match(/Development mode is now being cached/, output) - end - end - - test 'dev:cache deletes file and outputs message' do - Dir.chdir(app_path) do - output = `rake dev:cache` - output = `rake dev:cache` - assert_not File.exist?('tmp/caching-dev.txt') - assert_match(/Development mode is no longer being cached/, output) - end - end - end - end -end |