aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/system/system_generator.rb
blob: 0514957d9ccdc54357e304dae61f72351e56b021 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "rails/generators/test_unit"

module TestUnit # :nodoc:
  module Generators # :nodoc:
    class SystemGenerator < Base # :nodoc:
      check_class_collision suffix: "Test"

      def create_test_files
        if !File.exist?(File.join("test/application_system_test_case.rb"))
          template "application_system_test_case.rb", File.join("test", "application_system_test_case.rb")
        end

        template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb")
      end
    end
  end
end