Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Last active August 29, 2015 14:02
Show Gist options
  • Save guilleiguaran/4f9293c4cfae1250502d to your computer and use it in GitHub Desktop.
Save guilleiguaran/4f9293c4cfae1250502d to your computer and use it in GitHub Desktop.
require "minitest/autorun"
class MemeTest < Minitest::Test
def setup
@meme = Meme.new
end
def test_that_kitty_can_eat
assert_equal "OHAI!", @meme.i_can_has_cheezburger?
end
def test_that_it_will_not_blend
refute_match /^no/i, @meme.will_it_blend?
end
def test_that_will_be_skipped
skip "test this later"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment