Skip to content

Instantly share code, notes, and snippets.

@dixpac
Created March 5, 2016 13:23
Show Gist options
  • Save dixpac/20b9e4f90529268b15aa to your computer and use it in GitHub Desktop.
Save dixpac/20b9e4f90529268b15aa to your computer and use it in GitHub Desktop.
Write page! instead of save_and_open_page in integration tests
# instead of save_and_open_page you can just type
# page!
module CapbaraExt
def page!
save_and_open_page
end
end
RSpec.configure do |config|
config.include CapbaraExt
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment