(self, path)
| 13 | |
| 14 | class TestTaskProcessors(unittest.TestCase): |
| 15 | def _get_config(self, path): |
| 16 | path = os.path.join(os.path.abspath(__file__), path) |
| 17 | with open(os.path.abspath(path)) as f: |
| 18 | config = yaml.load(f, Loader=yaml.FullLoader) |
| 19 | config = ConfigNode(config) |
| 20 | return config |
| 21 | |
| 22 | def test_caption_processor(self): |
| 23 | config = self._get_config( |
no test coverage detected