aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/controller/controller_generator.rb
blob: 39816d999058d707fc75f9d4b204d363901693db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rails/generators/test_unit'

module TestUnit
  module Generators
    class ControllerGenerator < Base
      check_class_collision :suffix => "ControllerTest"

      def create_test_files
        template 'functional_test.rb',
                 File.join('test/functional', class_path, "#{file_name}_controller_test.rb")
      end
    end
  end
end