aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit.rb
blob: 1005ac557ce11d7cf15ee4798d96db19a4576437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require "rails/generators/named_base"

module TestUnit # :nodoc:
  module Generators # :nodoc:
    class Base < Rails::Generators::NamedBase # :nodoc:
    end
  end
end