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