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
Jonas Nicklas c7bf8359f2 Support non string arguments
Most of this work was done in the xpath gem, this
commit really only adds tests.
2012-09-06 09:33:43 +02:00

30 lines
776 B
Ruby

Capybara::SpecHelper.spec '#has_table?' do
before do
@session.visit('/tables')
end
it "should be true if the table is on the page" do
@session.should have_table('Villain')
@session.should have_table('villain_table')
@session.should have_table(:'villain_table')
end
it "should be false if the table is not on the page" do
@session.should_not have_table('Monkey')
end
end
Capybara::SpecHelper.spec '#has_no_table?' do
before do
@session.visit('/tables')
end
it "should be false if the table is on the page" do
@session.should_not have_no_table('Villain')
@session.should_not have_no_table('villain_table')
end
it "should be true if the table is not on the page" do
@session.should have_no_table('Monkey')
end
end