# File lib/quiz1/t/solutions/Jamis Buck/test/tc_solitaire-cipher.rb, line 46
  def test_decrypt_bad
    assert_raise( RuntimeError ) do
      @cipher.decrypt( "not good" )
    end

    assert_raise( RuntimeError ) do
      @cipher.decrypt( "BOGUS 12345" )
    end
  end