# File lib/quiz1/t/solutions/Jamis Buck/test/tc_solitaire-cipher.rb, line 56
  def test_decrypt_good
    msg = "CLEPK HHNIY CFPWH FDFEH"
    expected = "YOURCIPHERISWORKINGX"
    assert_equal expected, @cipher.decrypt( msg )

    msg = "ABVAW LWZSY OORYK DUPVH"
    expected = "WELCOMETORUBYQUIZXXX"
    assert_equal expected, @cipher.decrypt( msg )
  end