Beispiel #1
0
def test_morse_dec9():
    """
    Decoding test 9.

    Input: ".-- -..- .-.. -. -....- /"
    Output: "wxln- "
    """
    assert morse.morse_decode(".-- -..- .-.. -. -....- /") == "wxln- "
Beispiel #2
0
def test_morse_dec10():
    """
    Decoding test 10.

    Input: ".. --.. -.-- -...- .-.-.- --..--"
    Output: "izy=.,"
    """
    assert morse.morse_decode(".. --.. -.-- -...- .-.-.- --..--") == "izy=.,"
Beispiel #3
0
def test_morse_dec5():
    """
    Decoding test 5.

    Input: "..... -.... --... ---.. ----."
    Output: "56789"
    """
    assert morse.morse_decode("..... -.... --... ---.. ----.") == "56789"
Beispiel #4
0
def test_morse_dec8():
    """
    Decoding test 8.

    Input: "-.. - -. --- ---... .--.-. -..-."
    Output: "dtno:@/"
    """
    assert morse.morse_decode("-.. - -. --- ---... .--.-. -..-.") == "dtno:@/"
Beispiel #5
0
def test_morse_dec4():
    """
    Decoding test 4.

    Input: "----- .---- ..--- ...-- ....-"
    Output: "01234"
    """
    assert morse.morse_decode("----- .---- ..--- ...-- ....-") == "01234"
Beispiel #6
0
def test_morse_dec3():
    """
    Decoding test 3.

    Input: "--- .--. --.- .-. ... - ..- ...-"
    Output: "opqrstuv"
    """
    assert morse.morse_decode("--- .--. --.- .-. ... - ..- ...-") == "opqrstuv"
Beispiel #7
0
def test_morse_dec2():
    """
    Decoding test 2.

    Input: ".- -... -.-. -.. . ..-. --. ...."
    Output: "abcdefgh"
    """
    assert morse.morse_decode(".- -... -.-. -.. . ..-. --. ....") == "abcdefgh"
Beispiel #8
0
def test_morse_dec1():
    """
    Decoding test 1.

    Input: ".--- .- -.- ... . -- .- ..."
    Output: "jaksemas"
    """
    assert morse.morse_decode(".--- .- -.- ... . -- .- ...") == "jaksemas"
Beispiel #9
0
def test_morse_dec0():
    """
    Decoding test 0.

    Input: ".- .... --- .--- ..--.."
    Output: "ahoj?"
    """
    assert morse.morse_decode(".- .... --- .--- ..--..") == "ahoj?"