aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/plugin/plugin_generator.rb
blob: 293342c5d837bd8197318f9a54bc4029d593d2e8 (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'
      end
    end
  end
end