1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/commands/dev_cache_test.rb
Kasper Timm Hansen 2af9c08079 Clarify the need to run command twice.
We had 2 pull requests erronously trying to remove the first command.
Add some comments for clarity.
2015-12-07 20:36:22 +01:00

32 lines
859 B
Ruby

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
`rails dev:cache` # Create caching file.
output = `rails dev:cache` # Delete caching file.
assert_not File.exist?('tmp/caching-dev.txt')
assert_match(%r{Development mode is no longer being cached}, output)
end
end
end
end