Ejemplo n.º 1
0
def test_get_tpl_link():
    tpl = get_tpl("link")
    assert tpl == Tpl.LINK
Ejemplo n.º 2
0
def test_does_not_tpl_exists():
    with pytest.raises(AttributeError):
        get_tpl("anything")
Ejemplo n.º 3
0
def test_get_tpl_head():
    tpl = get_tpl("head")
    assert tpl == Tpl.HEAD