Ruby on Rails Rake test - Expected 762146111 to match 762146111

50 views Asked by At

My test fail on:

assert_match @post.user_id, @user.id

with strange error:

Expected 762146111 to match 762146111.

I have tried to use with and w/o Integer() in creation and/or on match steps

1

There are 1 answers

0
ChaosPredictor On BEST ANSWER

Thanks to engineersmnky.

It should be:

assert_equal @post.user_id, @user.id