(self)
| 594 | self.assertSetEqual(set(self.generator.list_templates()), templates) |
| 595 | |
| 596 | def test_sample_module(self): |
| 597 | generator = PythonGenerator(self.col_xsd_file) |
| 598 | |
| 599 | python_module = generator.render('sample.py.jinja')[0] |
| 600 | ast_module = ast.parse(python_module) |
| 601 | self.assertIsInstance(ast_module, ast.Module) |
| 602 | |
| 603 | def test_bindings_module(self): |
| 604 | generator = PythonGenerator(self.col_xsd_file) |
nothing calls this directly
no test coverage detected