Created
February 14, 2013 04:22
-
-
Save juliandunn/4950591 to your computer and use it in GitHub Desktop.
minitest-meme.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== 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