mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
c7bf8359f2
Most of this work was done in the xpath gem, this commit really only adds tests.
30 lines
776 B
Ruby
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
|