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:
parent
56fec2f269
commit
cf9be897b8
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue