Skip to content

Instantly share code, notes, and snippets.

@texel
Created April 17, 2009 17:20
Show Gist options
  • Save texel/97142 to your computer and use it in GitHub Desktop.
Save texel/97142 to your computer and use it in GitHub Desktop.
it "should send an invitation notification" do
InvitationMailer.stub!(:deliver_invitation)
InvitationMailer.should_receive(:deliver_invitation).and_return(true)
create_invitation
end
it "should send an invitation notification" do
InvitationMailer.stub!(:deliver_invitation)
InvitationMailer.should_not_receive(:deliver_invitation)
create_invitation
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment