summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2023-03-27 09:24:37 -0500
committerptmcg <ptmcg@austin.rr.com>2023-03-27 09:24:37 -0500
commit141980203504a1b58425d1770dc2d99da83d3252 (patch)
treeb6674dac666e94307305eed766600b6fa490f22c
parent391fd8029c158b1fc1e657eb0c31faa05857914e (diff)
downloadpyparsing-git-141980203504a1b58425d1770dc2d99da83d3252.tar.gz
Add 'url' named capture group to common.url Regex - update unit tests too
-rw-r--r--tests/test_unit.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_unit.py b/tests/test_unit.py
index 8c98a3e..1ebf3b6 100644
--- a/tests/test_unit.py
+++ b/tests/test_unit.py
@@ -6590,6 +6590,7 @@ class Test02_WithoutPackrat(ppt.TestParseResultsAsserts, TestCase):
"path": parts.path,
"query": parts.query,
"fragment": parts.fragment,
+ "url": sample_url,
}
self.assertParseAndCheckDict(ppc.url, sample_url, expected, verbose=True)