aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/integration_test/integration_test_generator.rb
blob: 00afaf70ab164be2e14fc70f8437447bf85f95c0 (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}Test"
      end

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