예제 #1
0
def test_check_instructor_string():
    assert not validator.check_instructor("John Doe")
예제 #2
0
def test_check_instructor_only_one():
    assert validator.check_instructor(["John Doe"])
예제 #3
0
def test_check_instructor_empty():
    assert not validator.check_instructor([])
예제 #4
0
def test_check_instructor():
    assert validator.check_instructor(["John Doe", "Jane Doe"])