From eed59816a8c33aad435b485383858205b5003220 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 22 Oct 2024 11:13:04 -1000 Subject: [PATCH] add missing coverage --- tests/test_url.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_url.py b/tests/test_url.py index 104b730b3..eafcccd9c 100644 --- a/tests/test_url.py +++ b/tests/test_url.py @@ -257,6 +257,7 @@ def test_host_subcomponent(host: str): @pytest.mark.parametrize( ("input", "result"), [ + ("/", None), ("http://example.com", "example.com"), ("http://[::1]", "[::1]"), ("http://xn--gnter-4ya.com", "xn--gnter-4ya.com"),