Merge commit 'm3talsmith/master' into gh_18
This commit is contained in:
commit
ecaed5ff93
|
@ -15,7 +15,7 @@ module Webrat
|
|||
matched = matches(stringlike)
|
||||
|
||||
if @options[:count]
|
||||
matched.size == @options[:count] && (!@block || @block.call(matched))
|
||||
matched.size == @options[:count].to_i && (!@block || @block.call(matched))
|
||||
else
|
||||
matched.any? && (!@block || @block.call(matched))
|
||||
end
|
||||
|
|
|
@ -61,6 +61,10 @@ describe "have_selector" do
|
|||
@body.should have_selector("li", :count => 4)
|
||||
}.should raise_error(Spec::Expectations::ExpectationNotMetError)
|
||||
end
|
||||
|
||||
it "should convert a string to an integer for count" do
|
||||
@body.should have_selector("li", :count => "3")
|
||||
end
|
||||
end
|
||||
|
||||
describe "specifying nested elements" do
|
||||
|
|
Loading…
Reference in New Issue