示例#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')