1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/test_unit/sub_test_task.rb
Jeremy Kemper abe4a8d070 Fix that failed tests should exit with a nonzero error code.
Partially reverts 14c89e7285.

Hat tip to @tenderlove for paring down the TestTask!
2012-02-07 10:41:30 -07:00

8 lines
189 B
Ruby

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