(self)
| 298 | self.assertFalse(inspect.isfunction(os.path.normpath)) |
| 299 | |
| 300 | def test_expanduser(self): |
| 301 | self.assertEqual(posixpath.expanduser("foo"), "foo") |
| 302 | self.assertEqual(posixpath.expanduser(b"foo"), b"foo") |
| 303 | |
| 304 | def test_expanduser_home_envvar(self): |
| 305 | with os_helper.EnvironmentVarGuard() as env: |
nothing calls this directly
no test coverage detected