Skip to content

Instantly share code, notes, and snippets.

@neaf
Created May 3, 2010 17:59
Show Gist options
  • Save neaf/388376 to your computer and use it in GitHub Desktop.
Save neaf/388376 to your computer and use it in GitHub Desktop.
module Cucumber
module Web
module URLs
def url_for(*names)
Capybara.app.url_for(*names)
end
alias_method :url, :url_for
def absolute_url_for(*names)
"http://www.example.com" + Capybara.app.url_for(*names)
end
alias_method :absolute_url, :absolute_url_for
end
end
end
World(Cucumber::Web::URLs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment