(self)
| 247 | importlib.machinery.SourcelessFileLoader) |
| 248 | |
| 249 | def test_directory(self): |
| 250 | with os_helper.temp_dir() as script_dir: |
| 251 | script_name = _make_test_script(script_dir, '__main__') |
| 252 | self._check_script(script_dir, script_name, script_dir, |
| 253 | script_dir, '', |
| 254 | importlib.machinery.SourceFileLoader) |
| 255 | |
| 256 | def test_directory_compiled(self): |
| 257 | with os_helper.temp_dir() as script_dir: |
nothing calls this directly
no test coverage detected