aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/generator/generator_generator.rb
blob: d7307398ce4c9723bfc84a824113f20371a32b0b (plain) (tree)

























                                                                                                                    
require 'rails/generators/test_unit'

module TestUnit # :nodoc:
  module Generators # :nodoc:
    class GeneratorGenerator < Base # :nodoc:
      check_class_collision suffix: "GeneratorTest"

      class_option :namespace, type: :boolean, default: true,
                               desc: "Namespace generator under lib/generators/name"

      def create_generator_files
        template 'generator_test.rb', File.join('test/lib/generators', class_path, "#{file_name}_generator_test.rb")
      end

    protected

      def generator_path
        if options[:namespace]
          File.join("generators", regular_class_path, file_name, "#{file_name}_generator")
        else
          File.join("generators", regular_class_path, "#{file_name}_generator")
        end
      end
    end
  end
end