1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Make sure default_test is tested for ActiveSupport::TestCase too

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8041 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2007-10-26 23:38:34 +00:00
parent 56fec2f269
commit cf9be897b8

View file

@ -1,5 +1,5 @@
require File.dirname(__FILE__) + '/abstract_unit'
require 'active_support/test_case'
class AssertDifferenceTest < Test::Unit::TestCase
def setup
@object = Class.new do
@ -64,8 +64,10 @@ class AssertDifferenceTest < Test::Unit::TestCase
end
end
# This should always pass
# These should always pass
class NotTestingThingsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Default
end
class AlsoDoingNothingTest < ActiveSupport::TestCase
end