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