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

module TestUnit
  module Generators
    class PluginGenerator < Base
      def create_test_files
        directory 'test'
      end
    end
  end
end