Remove some obsolete tests (mechanism of error detection suboptimal, replacements pending)

This commit is contained in:
Michael DeHaan 2013-10-11 19:28:53 -04:00
commit e8b043332f
5 changed files with 1 additions and 76 deletions

View file

@ -277,17 +277,6 @@ class TestUtils(unittest.TestCase):
res = template2.template(None, template, vars)
assert res == 'result'
def test_template_varReplace_iterated(self):
template = 'hello $who'
vars = {
'who': 'oh great $person',
'person': 'one',
}
res = template2.template(None, template, vars)
assert res == u'hello oh great one'
def test_varReplace_include(self):
template = 'hello $FILE(world) $LOOKUP(file, $filename)'