(self, actual, expected)
| 2360 | os.chmod(path, 0o755) |
| 2361 | |
| 2362 | def assertNormEqual(self, actual, expected): |
| 2363 | self.assertEqual(os.path.normcase(actual), os.path.normcase(expected)) |
| 2364 | |
| 2365 | def test_basic(self): |
| 2366 | # Given an EXE in a directory, it should be returned. |
no test coverage detected