spec/select_spec.rb in cello-0.0.23 vs spec/select_spec.rb in cello-0.0.25
- old
+ new
@@ -5,16 +5,12 @@
describe "define_extras_for_select" do
before(:all) do
@page = Mock::Site::MockPage.new "foo"
end
it "Select an option method exists" do
- (@page.methods.map.include? :select_select).should be_true
+ (@page.methods.map.include? :select_select).should be true
end
- it "go to default or empty option method exists" do
- pending
- (@page.methods.map.include? :select_clear).should be_true
- end
it "return the selected option method exists" do
- (@page.methods.map.include? :select_selected).should be_true
+ (@page.methods.map.include? :select_selected).should be true
end
end
end