Sha256: 75bb82d503a0a2629d085aef417beee056cf4050063f831d72b69fab6dd9ec36
Contents?: true
Size: 1.63 KB
Versions: 14
Compression:
Stored size: 1.63 KB
Contents
Capybara::SpecHelper.spec '#has_button?' do before do @session.visit('/form') end it "should be true if the given button is on the page" do expect(@session).to have_button('med') expect(@session).to have_button('crap321') expect(@session).to have_button(:'crap321') end it "should be true for disabled buttons if :disabled => true" do expect(@session).to have_button('Disabled button', :disabled => true) end it "should be false if the given button is not on the page" do expect(@session).not_to have_button('monkey') end it "should be false for disabled buttons by default" do expect(@session).not_to have_button('Disabled button') end it "should be false for disabled buttons if :disabled => false" do expect(@session).not_to have_button('Disabled button', :disabled => false) end end Capybara::SpecHelper.spec '#has_no_button?' do before do @session.visit('/form') end it "should be true if the given button is on the page" do expect(@session).not_to have_no_button('med') expect(@session).not_to have_no_button('crap321') end it "should be true for disabled buttons if :disabled => true" do expect(@session).not_to have_no_button('Disabled button', :disabled => true) end it "should be false if the given button is not on the page" do expect(@session).to have_no_button('monkey') end it "should be false for disabled buttons by default" do expect(@session).to have_no_button('Disabled button') end it "should be false for disabled buttons if :disabled => false" do expect(@session).to have_no_button('Disabled button', :disabled => false) end end
Version data entries
14 entries across 14 versions & 4 rubygems