Example #1
0
def test_check_layout():
    assert check.check_layout("workshop")
Example #2
0
def test_check_language_name():
    assert not check.check_layout('english')
Example #3
0
def test_check_language_upper_name():
    assert not check.check_layout('English')
Example #4
0
def test_check_layout_fail():
    assert not check.check_layout("lesson")
Example #5
0
def test_check_language_none():
    assert not check.check_layout(None)
Example #6
0
def test_check_layout():
    assert check.check_layout("workshop")
Example #7
0
def test_check_language_upper_name():
    assert not check.check_layout('English')
Example #8
0
def test_check_language_name():
    assert not check.check_layout('english')
Example #9
0
def test_check_language_none():
    assert not check.check_layout(None)
Example #10
0
def test_check_layout_fail():
    assert not check.check_layout("lesson")