1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
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
@session.should have_button('med')
@session.should have_button('crap321')
@session.should have_button(:'crap321')
end
it "should be true for disabled buttons if :disabled => true" do
@session.should have_button('Disabled button', :disabled => true)
end
it "should be false if the given button is not on the page" do
@session.should_not have_button('monkey')
end
it "should be false for disabled buttons by default" do
@session.should_not have_button('Disabled button')
end
it "should be false for disabled buttons if :disabled => false" do
@session.should_not 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
@session.should_not have_no_button('med')
@session.should_not have_no_button('crap321')
end
it "should be true for disabled buttons if :disabled => true" do
@session.should_not have_no_button('Disabled button', :disabled => true)
end
it "should be false if the given button is not on the page" do
@session.should have_no_button('monkey')
end
it "should be false for disabled buttons by default" do
@session.should have_no_button('Disabled button')
end
it "should be false for disabled buttons if :disabled => false" do
@session.should have_no_button('Disabled button', :disabled => false)
end
end
|