(self)
| 446 | |
| 447 | |
| 448 | def test_RFC2368(self): |
| 449 | # Issue 11467: path that starts with a number is not parsed correctly |
| 450 | self.assertEqual(urlparse('mailto:1337@example.org'), |
| 451 | ('mailto', '', '1337@example.org', '', '', '')) |
| 452 | self.assertEqual(urlparse('mailto:1337@example.org', missing_as_none=True), |
| 453 | ('mailto', None, '1337@example.org', None, None, None)) |
| 454 | |
| 455 | def test_RFC2396(self): |
| 456 | # cases from RFC 2396 |
nothing calls this directly
no test coverage detected