diff options
Diffstat (limited to 'test/test_cache.py')
-rw-r--r-- | test/test_cache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_cache.py b/test/test_cache.py index 3f6f1b8..6675fb0 100644 --- a/test/test_cache.py +++ b/test/test_cache.py @@ -4,17 +4,17 @@ from mako import lookup import shutil, unittest, os, time from test.util import result_lines from test import TemplateTest, template_base, module_base -from test import eq_ +from test import eq_, SkipTest try: import beaker import beaker.cache except: - from nose import SkipTest raise SkipTest("Beaker is required for these tests.") from mako.cache import register_plugin, CacheImpl + class MockCacheImpl(CacheImpl): realcacheimpl = None |