aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/test_unit/plugin/plugin_generator.rb
blob: 1c987ab1c938a21040fb89d095126a71daef7b7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module TestUnit
  module Generators
    class PluginGenerator < Base
      desc <<DESC
Description:
    Create TestUnit files for plugin generator.
DESC

      def create_test_files
        directory 'test'
      end
    end
  end
end