Skip to content

Instantly share code, notes, and snippets.

@juliandunn
Created February 14, 2013 04:22
Show Gist options
  • Save juliandunn/4950591 to your computer and use it in GitHub Desktop.
Save juliandunn/4950591 to your computer and use it in GitHub Desktop.
minitest-meme.txt
=== Unit tests
require 'minitest/autorun'
class TestMeme < MiniTest::Unit::TestCase
def setup
@meme = Meme.new
end
def test_that_kitty_can_eat
assert_equal "OHAI!", @meme.i_can_has_cheezburger?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment