Closed JunichiIto closed 8 years ago
In Appendix A, the sample code for assert_send is assert_send @calendar, :no_appointments?, :saturday but it should be assert_send [@calendar, :no_appointments?, :saturday], I think.
assert_send
assert_send @calendar, :no_appointments?, :saturday
assert_send [@calendar, :no_appointments?, :saturday]
Please see also: http://docs.seattlerb.org/minitest/Minitest/Assertions.html#method-i-assert_send
In Appendix A, the sample code for
assert_send
isassert_send @calendar, :no_appointments?, :saturday
but it should beassert_send [@calendar, :no_appointments?, :saturday]
, I think.Please see also: http://docs.seattlerb.org/minitest/Minitest/Assertions.html#method-i-assert_send