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

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