teamcapybara--capybara/lib/capybara/spec/session/has_text_spec.rb

16 lines
315 B
Ruby
Raw Normal View History

shared_examples_for 'has_text' do
describe '#has_text?' do
it 'works' do
@session.visit('/with_html')
@session.should have_text('Lorem')
end
end
describe '#has_no_text?' do
it 'works' do
@session.visit('/with_html')
@session.should have_no_text('Merol')
end
end
end