Skip to content

Instantly share code, notes, and snippets.

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