Skip to content

Instantly share code, notes, and snippets.

@jakcharlton
Created April 25, 2012 09:26
Show Gist options
  • Save jakcharlton/2488466 to your computer and use it in GitHub Desktop.
Save jakcharlton/2488466 to your computer and use it in GitHub Desktop.
Simple controller mock
it "assigns all organisations as @organisations" do
org = double(Organisation)
org.stub!(:all).and_return([org])
get :index, {}, valid_session
assigns(:organisations).should eq([org])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment