示例#1
0
def test_invalid():
    hashed = crypt('password')
    assert not verify('password2', hashed)
示例#2
0
def test_valid():
    hashed = crypt('password')
    assert verify('password', hashed)