简体   繁体   中英

Ruby on Rails Rake test - Expected 762146111 to match 762146111

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

Thanks to engineersmnky .

It should be:

assert_equal @post.user_id, @user.id

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM