With Capybara, one can easily assert the exact amount of nodes to be found:
page.should have_selector("fieldset.has_many_fields input[type=file]", :count => 2)
This ensures that there are exactly 2 such fields. But I want to check for "at least 2". Something like:
page.all("fieldset.has_many_fields input[type=file]").count should be_greater_than 2
This is an example, because it throws undefined method 'greater_than?' for 3:Fixnum'
Is there a matcher like this? Or another trick that allows me to check for "at least N nodes"?