Skip to content

Instantly share code, notes, and snippets.

@fguillen
Created April 14, 2011 18:52
Show Gist options
  • Save fguillen/920201 to your computer and use it in GitHub Desktop.
Save fguillen/920201 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'test/unit'
require 'mocha'
class MyMochaTest < Test::Unit::TestCase
def test_exceptation
string = 'wadus string'
string.expects( :downcase )
assert true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment