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











                               
require 'generators/named_base'

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