Skip to content

Instantly share code, notes, and snippets.

@benedikt
Created July 17, 2012 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benedikt/3131247 to your computer and use it in GitHub Desktop.
Save benedikt/3131247 to your computer and use it in GitHub Desktop.
I wish this would just work...
require 'spec_helper'
describe ProjectsController do
let(:project) { double(:project) }
let(:projects) { [project] }
describe 'GET show' do
let(:params) { { :id => 1, :format => :json } }
before { Project.should_receive(:find).with(1).and_return(project) }
it { should assign_to(:project).with(project) }
it { should respond_with(project) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment