Sha256: eafd53ebc6212a312a2334a43823ddbb0a17acb013e8933a2d32b7c2bb6fe7d5
Contents?: true
Size: 833 Bytes
Versions: 24
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
24 entries across 23 versions & 2 rubygems