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