Пример #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"])