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

defaults_test gets a dummy test method so it has at least one test to run

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3557 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-02-09 19:32:32 +00:00
parent d0f3e52f02
commit c326851e4d

View file

@ -10,5 +10,9 @@ class DefaultsTest < Test::Unit::TestCase
assert_instance_of(Fixnum, default.negative_integer)
assert_equal(default.negative_integer, -1)
end
else
def test_dummy
assert true
end
end
end