Created
July 17, 2012 18:50
-
-
Save benedikt/3131247 to your computer and use it in GitHub Desktop.
Revisions
-
benedikt created this gist
Jul 17, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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