aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rake/log_test.rb
blob: fdd3c71fe8f672dfd1cd00b40484993f0e9cb9a2 (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
require "isolation/abstract_unit"

module ApplicationTests
  module RakeTests
    class LogTest < ActiveSupport::TestCase
      include ActiveSupport::Testing::Isolation

      def setup
        build_app
      end

      def teardown
        teardown_app
      end

      test "log:clear clear all environments log files by default" do
        Dir.chdir(app_path) do
          File.open("config/environments/staging.rb", "w")

          File.write("log/staging.log", "staging")
          File.write("log/test.log", "test")
          File.write("log/dummy.log", "dummy")

          `rails log:clear`

          assert_equal 0, File.size("log/test.log")
          assert_equal 0, File.size("log/staging.log")
          assert_equal 5, File.size("log/dummy.log")
        end
      end
    end
  end
end