aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/controller/controller_generator.rb
blob: db99e55e9e2777dc5cc77d13765a674673f168dd (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    
 


                                    
                                                                                    


                                                       
                                      
                                                                                             



         
require 'rails/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/controllers', class_path, "#{file_name}_controller_test.rb")
      end
    end
  end
end