Ejemplo n.º 1
0
def test_get_template_file_unknown_variable():
    param = 'foo'
    x = IlambConfigFile(param)
    x.get_template_file(param)
Ejemplo n.º 2
0
def test_get_template_file():
    param = 'gpp'
    x = IlambConfigFile(param)
    tmpl_file = x.get_template_file(param)
    assert_equal(tmpl_file, os.path.join(data_directory, gpp_template_file))