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

Merge pull request #11049 from neerajdotname/no-need-of-large-number

fix bad test by making number that fits for integer
This commit is contained in:
Jon Leighton 2013-06-21 10:58:43 -07:00
commit cbc2e7987e

View file

@ -402,9 +402,13 @@ class InverseHasManyTests < ActiveRecord::TestCase
end
def test_raise_record_not_found_error_when_invalid_ids_are_passed
# delete all interest records to ensure that hard coded invalid_id(s)
# are indeed invalid.
Interest.delete_all
man = Man.create!
invalid_id = 2394823094892348920348523452345
invalid_id = 245324523
assert_raise(ActiveRecord::RecordNotFound) { man.interests.find(invalid_id) }
invalid_ids = [8432342, 2390102913, 2453245234523452]