(self, compiled=False)
| 7230 | self.test_directory(compiled=True) |
| 7231 | |
| 7232 | def test_module(self, compiled=False): |
| 7233 | basename = 'module' + os_helper.FS_NONASCII |
| 7234 | modulename = f'{self.dirname}.{basename}' |
| 7235 | self.make_script(self.dirname, basename, compiled=compiled) |
| 7236 | self.check_usage(f'{py} -m {modulename}', |
| 7237 | '-m', modulename, PYTHONPATH=os.curdir) |
| 7238 | |
| 7239 | def test_module_compiled(self): |
| 7240 | self.test_module(compiled=True) |
no test coverage detected