所以我通過ruby koans教程學習Ruby。 在about_assert.rb腳本中,有一個關於assert_equal評論, 「主張平等的一些方法是比別人更好」關於Ruby assert_equal
這裏是代碼
def test_a_better_way_of_asserting_equality
expected_value = 2
actual_value = 1 + 1
assert_equal expected_value, actual_value
end
我的問題是,爲什麼 優於 assert expected_value == actual_value
如果我的記憶是正確的錯誤信息是(總是有幫助的)預計會是假的 – 2011-12-23 09:05:46