Passing a URL path to resolve_url() results in the same url.
(self)
| 13 | """ |
| 14 | |
| 15 | def test_url_path(self): |
| 16 | """ |
| 17 | Passing a URL path to resolve_url() results in the same url. |
| 18 | """ |
| 19 | self.assertEqual("/something/", resolve_url("/something/")) |
| 20 | |
| 21 | def test_relative_path(self): |
| 22 | """ |
nothing calls this directly
no test coverage detected