Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rack-test-accepts

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-test-accepts

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Rack::Test::Accepts

Helpers for rack-test that mean I don't need to remember the accept header syntax, or whether to prepend HTTP to them.

Build status

Master branch: Build Status

Why?

Just to make life a bit easier.

Installation

Add this line to your application's Gemfile:

gem 'rack-test-accepts'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-test-accepts

Usage

It's easy to add this in where it's needed by including it via the RSpec config:

require 'rack/test/accepts'

RSpec.configure do |config|
  config.include Rack::Test::Accepts, :type => :request

then:

describe "My route", :type => :request do
  let(:body) { { :key => "abcdef" }.to_json }
  before do
    post '/channel/create', body, env(:accepts_json)
  end

It will work for any of the mime types listed in Rack::Mime::MIME_TYPES e.g.

get "/", {}, env(:accepts_zip)
put "/", {}, env(:accepts_xml)
delete "/", {}, env(:accepts_asm)

or whichever crazy format your routes want to accept.

XHR

It also detects XHR in either of two ways.

get "/", {}, env(:accepts_xhr)
get "/", {}, env(:via_xhr)

There's no difference.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 13 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc