PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # -*- coding: utf-8 -*- """ jinja2.testsuite.bytecode_cache ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Test bytecode caching :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import unittest from jinja2.testsuite import JinjaTestCase, package_loader from jinja2 import Environment from jinja2.bccache import FileSystemBytecodeCache from jinja2.exceptions import TemplateNotFound bytecode_cache = FileSystemBytecodeCache() env = Environment( loader=package_loader, bytecode_cache=bytecode_cache, ) class ByteCodeCacheTestCase(JinjaTestCase): def test_simple(self): tmpl = env.get_template('test.html') assert tmpl.render().strip() == 'BAR' self.assert_raises(TemplateNotFound, env.get_template, 'missing.html') def suite(): suite = unittest.TestSuite() suite.addTest(unittest.makeSuite(ByteCodeCacheTestCase)) return suite