コード例 #1
0
def test_get_tpl_link():
    tpl = get_tpl("link")
    assert tpl == Tpl.LINK
コード例 #2
0
def test_does_not_tpl_exists():
    with pytest.raises(AttributeError):
        get_tpl("anything")
コード例 #3
0
def test_get_tpl_head():
    tpl = get_tpl("head")
    assert tpl == Tpl.HEAD