File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def enable_by_file
15
15
puts "Action Controller caching disabled for development mode."
16
16
else
17
17
create_cache_file
18
- puts "Action Controller caching enabled for development mode"
18
+ puts "Action Controller caching enabled for development mode. "
19
19
end
20
20
21
21
FileUtils . touch "tmp/restart.txt"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Rails::Command::DevTest < ActiveSupport::TestCase
13
13
assert_not File . exist? ( "tmp/restart.txt" )
14
14
15
15
assert_equal <<~OUTPUT , run_dev_cache_command
16
- Development mode is now being cached .
16
+ Action Controller caching enabled for development mode .
17
17
OUTPUT
18
18
19
19
assert File . exist? ( "tmp/caching-dev.txt" )
@@ -30,7 +30,7 @@ class Rails::Command::DevTest < ActiveSupport::TestCase
30
30
restart_file_time_before = File . mtime ( "tmp/restart.txt" )
31
31
32
32
assert_equal <<~OUTPUT , run_dev_cache_command
33
- Development mode is now being cached .
33
+ Action Controller caching enabled for development mode .
34
34
OUTPUT
35
35
36
36
assert File . exist? ( "tmp/caching-dev.txt" )
@@ -49,7 +49,7 @@ class Rails::Command::DevTest < ActiveSupport::TestCase
49
49
restart_file_time_before = File . mtime ( "tmp/restart.txt" )
50
50
51
51
assert_equal <<~OUTPUT , run_dev_cache_command
52
- Development mode is no longer being cached .
52
+ Action Controller caching disabled for development mode .
53
53
OUTPUT
54
54
55
55
assert_not File . exist? ( "tmp/caching-dev.txt" )
You can’t perform that action at this time.
0 commit comments