(self)
| 10 | |
| 11 | class ExtendsBehaviorTests(SimpleTestCase): |
| 12 | def test_normal_extend(self): |
| 13 | engine = Engine(dirs=[os.path.join(RECURSIVE, "fs")]) |
| 14 | template = engine.get_template("one.html") |
| 15 | output = template.render(Context({})) |
| 16 | self.assertEqual(output.strip(), "three two one") |
| 17 | |
| 18 | def test_extend_recursive(self): |
| 19 | engine = Engine( |
nothing calls this directly
no test coverage detected