Exemple #1
0
def test_optional_empty():
    optional('')
Exemple #2
0
def test_optional_str():
    optional('hello')
Exemple #3
0
def test_optional_none():
    with pytest.raises(StopValidation) as e:
        optional(None)