Skip to content

Instantly share code, notes, and snippets.

@odlp
Created January 18, 2015 08:57
Show Gist options
  • Save odlp/060ecb30d9f00b97f990 to your computer and use it in GitHub Desktop.
Save odlp/060ecb30d9f00b97f990 to your computer and use it in GitHub Desktop.
RSpec Options (CORS) request support
# Add support for 'options' request test. Place in /spec/support
# https://github.com/rspec/rspec-rails/issues/925#issuecomment-62527611
module ActionDispatch::Integration::RequestHelpers
def options(path, parameters = nil, headers_or_env = nil)
process :options, path, parameters, headers_or_env
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment