aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/generators/test_unit.rb
blob: ecf4c546ed29afb6db56aa89478cb25b7424fc95 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                               
               
                   
                                             






                          
require 'generators/named_base'

module TestUnit
  module Generators
    class Base < Rails::Generators::NamedBase
      protected
        def self.base_name
          'test_unit'
        end
    end
  end
end