(self, expected, args)
| 154 | self._check_str_subclass('\\\\some\\share\\a\\b.txt') |
| 155 | |
| 156 | def _check_str(self, expected, args): |
| 157 | p = self.cls(*args) |
| 158 | self.assertEqual(str(p), expected.replace('/', self.sep)) |
| 159 | |
| 160 | def test_str_common(self): |
| 161 | # Canonicalized paths roundtrip. |
no test coverage detected