예제 #1
0
def test_not_empty_empty_list():
    with pytest.raises(ValidationError):
        not_empty([])
예제 #2
0
def test_not_empty_list():
    not_empty(['hello', 'world'])
예제 #3
0
def test_not_empty_empty_str():
    with pytest.raises(ValidationError):
        not_empty('')
예제 #4
0
def test_not_empty_str():
    not_empty('hello')