Guest User

Untitled

a guest
May 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. require "test/unit"
  2. class MaskTest < Test::Unit::TestCase
  3. def test_morse
  4. assert_equal ".-", morse("a")
  5. assert_equal "-...", morse("b")
  6. assert_equal "......-...-..--- .-----.-..-..-..", morse("Hello World")
  7. end
  8. end
Add Comment
Please, Sign In to add comment