Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は同等のものを知りたい:
event.should be_live
ミニテストで?私がテストしている方法は次のとおりです。
event.live?
現時点で私は使用しています:
conf.live?.must_equal true
しかし、それは私にはかなり不自然に見えます。
minitest の新しいバージョンでは、述語をテストできますassert_operator。仕様DSLでの期待はmust_be. したがって、コードは次のようになります。
assert_operator
must_be
event.must_be :live?