(self)
| 158 | self.assertEqual(str(p), expected.replace('/', self.sep)) |
| 159 | |
| 160 | def test_str_common(self): |
| 161 | # Canonicalized paths roundtrip. |
| 162 | for pathstr in ('a', 'a/b', 'a/b/c', '/', '/a/b', '/a/b/c'): |
| 163 | self._check_str(pathstr, (pathstr,)) |
| 164 | # Other tests for str() are in test_equivalences(). |
| 165 | |
| 166 | @needs_windows |
| 167 | def test_str_windows(self): |
nothing calls this directly
no test coverage detected