You're looking for Custom Matchers:
https://github.com/dchelimsky/rspec/wiki/Custom-Matchers
Em 15-05-2012 03:47, Patrick J. Collins escreveu:
Capybara has two methods:
page.has_button?
and
page.has_link?
... I am wondering, how can I make a helper method that will be
satisfied by one or the other? In other words, I want to be able to do:
page.should have_link_or_button("blah")
def have_link_or_button(locator)
have_link(locator) || have_button(locator)
end
But that doesn't work... Is there any way to do this?
Patrick J. Collins
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users