aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/test_unit/sub_test_task.rb
blob: 87b6f9b5a4071ab0b641c85941adfc4fd311c36a (plain) (blame)
1
2
3
4
5
6
7
8
module Rails
  # Silence the default description to cut down on `rake -T` noise.
  class SubTestTask < Rake::TestTask
    def desc(string)
      # Ignore the description.
    end
  end
end