Skip to content

Instantly share code, notes, and snippets.

@sob
Created February 10, 2009 20:53
Show Gist options
  • Save sob/61585 to your computer and use it in GitHub Desktop.
Save sob/61585 to your computer and use it in GitHub Desktop.
context "on PUT to Admin::Contacts#spam" do
setup do
login_as(:quentin)
@contact = Factory(:contact)
put :spam, :id => @contact.id
end
should_assign_to :contact
should_set_the_flash_to /success/i
should_redirect_to 'admin_contacts_path()'
should_change "@contact.spam?"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment