Hi all, Mengapa saya masih dapat error untuk kode testing berikut:
def test_should_be_equal
hash = { :title => "recipe title",
:description => "recipe description",
:serving => 1,
:directions => "do it"
}
recipe_expected = Recipe.new(hash)
recipe_should_be_equal = Recipe.new(hash)
assert_equal(recipe_expected, recipe_should_be_equal)
end
Thanks,
Dida
[Non-text portions of this message have been removed]

