Passing a full URL to resolve_url() results in the same url.
(self)
| 28 | self.assertEqual("./relative/", resolve_url("./relative/")) |
| 29 | |
| 30 | def test_full_url(self): |
| 31 | """ |
| 32 | Passing a full URL to resolve_url() results in the same url. |
| 33 | """ |
| 34 | url = "http://example.com/" |
| 35 | self.assertEqual(url, resolve_url(url)) |
| 36 | |
| 37 | def test_model(self): |
| 38 | """ |
nothing calls this directly
no test coverage detected