Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created October 12, 2012 22:02
Show Gist options
  • Select an option

  • Save kenmazaika/3881824 to your computer and use it in GitHub Desktop.

Select an option

Save kenmazaika/3881824 to your computer and use it in GitHub Desktop.
kitten mittons
class Kitten
def clothing
[]
end
end
kitten = Kitten.new
kitten.clothing
=> []
kitten.expects(:clothing).returns(['mittons!'])
=> #<Mocha::Expectation:0x007f9203e8833>
kitten.clothing
=> ['mittons']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment