1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/has_table_spec.rb

32 lines
834 B
Ruby
Raw Normal View History

2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
Capybara::SpecHelper.spec '#has_table?' do
before do
@session.visit('/tables')
2010-02-20 16:41:53 -05:00
end
it "should be true if the table is on the page" do
expect(@session).to have_table('Villain')
expect(@session).to have_table('villain_table')
expect(@session).to have_table(:'villain_table')
end
2010-02-20 16:41:53 -05:00
it "should be false if the table is not on the page" do
expect(@session).not_to have_table('Monkey')
2010-02-20 16:41:53 -05:00
end
end
Capybara::SpecHelper.spec '#has_no_table?' do
before do
@session.visit('/tables')
end
2010-02-20 16:41:53 -05:00
it "should be false if the table is on the page" do
expect(@session).not_to have_no_table('Villain')
expect(@session).not_to have_no_table('villain_table')
end
2010-02-20 16:41:53 -05:00
it "should be true if the table is not on the page" do
expect(@session).to have_no_table('Monkey')
end
end