コード例 #1
0
ファイル: test_userpass.py プロジェクト: the7day/jabbapylib
def test_get_password():
    passwd = userpass.get_password(min=5, max=10)
    assert passwd.isalnum()
    assert 5 <= len(passwd) <= 10
コード例 #2
0
def test_get_password():
    passwd = userpass.get_password(min=5, max=10)
    assert passwd.isalnum()
    assert 5 <= len(passwd) <= 10
コード例 #3
0
def test_get_password():
    assert 5 <= len(userpass.get_password(min=5, max=10)) <= 10