summaryrefslogtreecommitdiff
path: root/tests/test_templite.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-10-26 14:41:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-10-26 14:41:21 -0400
commit191f41f43a2933ac921847f877d87c2594d727f0 (patch)
treec7383378eabe81062b4b07591585d531dd13250e /tests/test_templite.py
parent97c373346323a848d4d0547256a2e1fe06123267 (diff)
downloadpython-coveragepy-git-191f41f43a2933ac921847f877d87c2594d727f0.tar.gz
Now that this is a CoverageTest, need to shut off the temp dir.
Diffstat (limited to 'tests/test_templite.py')
-rw-r--r--tests/test_templite.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_templite.py b/tests/test_templite.py
index a0bd182f..e3918e4b 100644
--- a/tests/test_templite.py
+++ b/tests/test_templite.py
@@ -21,6 +21,8 @@ class AnyOldObject(object):
class TempliteTest(CoverageTest):
"""Tests for Templite."""
+ run_in_temp_dir = False
+
def try_render(self, text, ctx, result):
"""Render `text` through `ctx`, and it had better be `result`."""
self.assertEqual(Templite(text).render(ctx), result)