File: log_test.rb

package info (click to toggle)
rails 2%3A7.2.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,348 kB
  • sloc: ruby: 349,797; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (35 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (5)
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
# frozen_string_literal: true

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