(self, wrapped_url)
| 1906 | ('<URL:scheme://host/path>', '<scheme://host/path>', |
| 1907 | 'URL:scheme://host/path', 'scheme://host/path')) |
| 1908 | def test_unwrap(self, wrapped_url): |
| 1909 | url = urllib.parse.unwrap(wrapped_url) |
| 1910 | self.assertEqual(url, 'scheme://host/path') |
| 1911 | |
| 1912 | |
| 1913 | class DeprecationTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected