aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/integration_test/integration_test_generator.rb
blob: a95835001934dbba2982ee908c806219415222c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Rails
  module Generators
    class IntegrationTestGenerator < NamedBase
      def check_class_collisions
        class_collisions class_name, "#{class_name}Test"
      end

      def create_test_files
        template 'integration_test.rb', File.join('test/integration', class_path, "#{file_name}_test.rb")
      end
    end
  end
end