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:
commit
cbc2e7987e
1 changed files with 5 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue