aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/plugin/plugin_generator.rb
blob: fd8c4cb4135d99fbf794928bd9f7c0038174f8b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'generators/test_unit'

module TestUnit
  module Generators
    class PluginGenerator < Base
      check_class_collision :suffix => "Test"

      def create_test_files
        directory 'test', "vendor/plugins/#{file_name}/test"
      end
    end
  end
end