spec/integration/yield_spec.rb in volt-0.9.1 vs spec/integration/yield_spec.rb in volt-0.9.2
- old
+ new
@@ -4,11 +4,11 @@
before do
visit '/yield'
end
it 'should render the yielded content multiple times' do
- expect(page).to have_content("My yielded content 1")
- expect(page).to have_content("My yielded content 2")
+ expect(page).to have_content('My yielded content 1')
+ expect(page).to have_content('My yielded content 2')
end
it 'should render the content from the tag\'s controller when yielding' do
expect(page).to have_content('This is my content')
end