def test_morse_dec9(): """ Decoding test 9. Input: ".-- -..- .-.. -. -....- /" Output: "wxln- " """ assert morse.morse_decode(".-- -..- .-.. -. -....- /") == "wxln- "
def test_morse_dec10(): """ Decoding test 10. Input: ".. --.. -.-- -...- .-.-.- --..--" Output: "izy=.," """ assert morse.morse_decode(".. --.. -.-- -...- .-.-.- --..--") == "izy=.,"
def test_morse_dec5(): """ Decoding test 5. Input: "..... -.... --... ---.. ----." Output: "56789" """ assert morse.morse_decode("..... -.... --... ---.. ----.") == "56789"
def test_morse_dec8(): """ Decoding test 8. Input: "-.. - -. --- ---... .--.-. -..-." Output: "dtno:@/" """ assert morse.morse_decode("-.. - -. --- ---... .--.-. -..-.") == "dtno:@/"
def test_morse_dec4(): """ Decoding test 4. Input: "----- .---- ..--- ...-- ....-" Output: "01234" """ assert morse.morse_decode("----- .---- ..--- ...-- ....-") == "01234"
def test_morse_dec3(): """ Decoding test 3. Input: "--- .--. --.- .-. ... - ..- ...-" Output: "opqrstuv" """ assert morse.morse_decode("--- .--. --.- .-. ... - ..- ...-") == "opqrstuv"
def test_morse_dec2(): """ Decoding test 2. Input: ".- -... -.-. -.. . ..-. --. ...." Output: "abcdefgh" """ assert morse.morse_decode(".- -... -.-. -.. . ..-. --. ....") == "abcdefgh"
def test_morse_dec1(): """ Decoding test 1. Input: ".--- .- -.- ... . -- .- ..." Output: "jaksemas" """ assert morse.morse_decode(".--- .- -.- ... . -- .- ...") == "jaksemas"
def test_morse_dec0(): """ Decoding test 0. Input: ".- .... --- .--- ..--.." Output: "ahoj?" """ assert morse.morse_decode(".- .... --- .--- ..--..") == "ahoj?"