Skip to content

Instantly share code, notes, and snippets.

@wojtekmach
Created November 3, 2011 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wojtekmach/1336382 to your computer and use it in GitHub Desktop.
Save wojtekmach/1336382 to your computer and use it in GitHub Desktop.
Capybara + polymorphic_url
module Capybara::PolymorphicVisit
def visit(*args)
if args.first.is_a? String
super *args
else
super polymorphic_url(*args)
end
end
end
World Capybara::PolymorphicVisit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment