Guest User

Untitled

a guest
May 28th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. require 'minitest/unit'
  2. MiniTest::Unit.autorun
  3.  
  4. class TestMeme < MiniTest::Unit::TestCase
  5. def setup
  6. @meme = Meme.new
  7. end
  8.  
  9. def test_that_kitty_can_eat
  10. assert_equal "OHAI!", @meme.i_can_has_cheezburger?
  11. end
  12.  
  13. def test_that_it_doesnt_not_blend
  14. refute_match /^no/i, @meme.does_it_blend?
  15. end
  16. end
Add Comment
Please, Sign In to add comment