aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/controller/controller_generator.rb
blob: d0d12d79e98e760f01487c861fd498cc811a3f7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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