Ruby Rails Rake 测试 - 预期 762146111 匹配 762146111
Ruby on Rails Rake test - Expected 762146111 to match 762146111
我的测试失败于:
assert_match @post.user_id, @user.id
有奇怪的错误:
Expected 762146111 to match 762146111.
我尝试在创建 and/or 匹配步骤
中使用 with 和 w/o Integer()
应该是:
assert_equal @post.user_id, @user.id
我的测试失败于:
assert_match @post.user_id, @user.id
有奇怪的错误:
Expected 762146111 to match 762146111.
我尝试在创建 and/or 匹配步骤
中使用 with 和 w/o Integer()应该是:
assert_equal @post.user_id, @user.id