Exemple #1
0
def test_check_instructor_string():
    assert not check.check_instructors("John Doe")
Exemple #2
0
def test_check_instructor_only_one():
    assert check.check_instructors(["John Doe"])
Exemple #3
0
def test_check_instructor_empty():
    assert not check.check_instructors([])
Exemple #4
0
def test_check_instructors():
    assert check.check_instructors(["John Doe", "Jane Doe"])
Exemple #5
0
def test_check_instructor_string():
    assert not check.check_instructors("John Doe")
Exemple #6
0
def test_check_instructor_empty():
    assert not check.check_instructors([])
Exemple #7
0
def test_check_instructor_only_one():
    assert check.check_instructors(["John Doe"])
Exemple #8
0
def test_check_instructors():
    assert check.check_instructors(["John Doe", "Jane Doe"])