Skip to content

Instantly share code, notes, and snippets.

@inossidabile
Created November 24, 2012 20:47
Show Gist options
  • Save inossidabile/4141351 to your computer and use it in GitHub Desktop.
Save inossidabile/4141351 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe ItemsController do
describe_request :index, request_path: '/items', method: 'GET' do
it 'lists items' do
get '/items'
# ...
end
end
# another style:
describe_request 'GET /items/:id' do
it 'shows item' do
get "/items/#{Item.first.id}"
# ...
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment