summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-10-26 01:27:33 -0400
committerChris McDonough <chrism@plope.com>2010-10-26 01:27:33 -0400
commitfdb0733da2365a95b7e929b7e10eb0721e3e7abb (patch)
tree58415f9bccda9a76428faa3bcf786e2d507c8143
parent4f25f444d4c8120869eecd08e26d33b9a843bce3 (diff)
downloadpyramid-fdb0733da2365a95b7e929b7e10eb0721e3e7abb.tar.gz
pyramid-fdb0733da2365a95b7e929b7e10eb0721e3e7abb.tar.bz2
pyramid-fdb0733da2365a95b7e929b7e10eb0721e3e7abb.zip
make sure mako is present
-rw-r--r--HACKING.txt1
-rw-r--r--pyramid/tests/test_configuration.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/HACKING.txt b/HACKING.txt
index 9445fe017..7de34bed6 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -22,4 +22,3 @@ The above requirements are relaxed for paster template dependencies.
If a paster template has a dependency on something that doesn't work
on a particular platform, that caveat should be spelled out clearly in
*its* documentation (within docs/).
-
diff --git a/pyramid/tests/test_configuration.py b/pyramid/tests/test_configuration.py
index 913476a7b..48fd778af 100644
--- a/pyramid/tests/test_configuration.py
+++ b/pyramid/tests/test_configuration.py
@@ -93,6 +93,8 @@ class ConfiguratorTests(unittest.TestCase):
self.failUnless(config.registry.getUtility(IRendererFactory, 'string'))
self.failUnless(config.registry.getUtility(IRendererFactory, '.pt'))
self.failUnless(config.registry.getUtility(IRendererFactory, '.txt'))
+ self.failUnless(config.registry.getUtility(IRendererFactory, '.mak'))
+ self.failUnless(config.registry.getUtility(IRendererFactory, '.mako'))
def test_begin(self):
from pyramid.configuration import Configurator