aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake/dev_test.rb
blob: 28d8b22a3763b706e25364e712b6030a34bafdf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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