Sha256: ff134fbec1bd0589a9751a206e8919c98e5d8a3254925c631067b7849d851348
Contents?: true
Size: 833 Bytes
Versions: 13
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true Capybara::SpecHelper.spec '#has_table?' do before do @session.visit('/tables') 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 it "should be false if the table is not on the page" do expect(@session).not_to 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 expect(@session).not_to have_no_table('Villain') expect(@session).not_to have_no_table('villain_table') end it "should be true if the table is not on the page" do expect(@session).to have_no_table('Monkey') end end
Version data entries
13 entries across 13 versions & 2 rubygems