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

module TestUnit
  module Generators
    class ControllerGenerator < Base
      argument :actions, :type => :array, :default => [], :banner => "action action"
      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