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