(self, actual, expected)
| 2334 | os.chmod(path, 0o755) |
| 2335 | |
| 2336 | def assertNormEqual(self, actual, expected): |
| 2337 | self.assertEqual(os.path.normcase(actual), os.path.normcase(expected)) |
| 2338 | |
| 2339 | def test_basic(self): |
| 2340 | # Given an EXE in a directory, it should be returned. |
no test coverage detected