def test_check_psw8(): psw = "Qwert5@" assert check_psw(psw) is False
def test_check_psw6(): psw = "Qwerty$£@55" assert check_psw(psw) is True
def test_check_psw7(): psw = "Qwerty$£@" assert check_psw(psw) is False
def test_check_psw5(): psw = "551234" assert check_psw(psw) is False
def test_check_psw4(): psw = "Qwerty" assert check_psw(psw) is False
def test_check_psw3(): psw = "QWERT55" assert check_psw(psw) is False
def test_check_psw2(): psw = "qwert" assert check_psw(psw) is False
def test_check_psw1(): psw = "Qwert1234" assert check_psw(psw) is True