minitestのintegration
テストを使って以下のような複数クラスのテストする。
<div class="notification is-danger">
<p>test</p>
</div>
最初は以下のように書いてしまったが、テストが通らない。
test "複数クラスのテスト" do
assert_select 'div.notification is-danger'
end
正しくは、do
で囲む。
test "複数クラスのテスト" do
assert_select 'div.notification' do
assert_select 'div.is-danger'
end
end