Esempio n. 1
0
def test_min_length_longer():
    min_length(3)('aaaa')
Esempio n. 2
0
def test_min_length_shorter():
    with pytest.raises(ValidationError):
        min_length(3)('aa')
Esempio n. 3
0
def test_min_length_equal():
    min_length(3)('aaa')
Esempio n. 4
0
def test_min_length_empty():
    with pytest.raises(ValidationError):
        min_length(3)('')