Skip to content

Commit 6df3936

Browse files
committed
add failing test mentioned in #11, comment out invalid tests mentioned in #38
1 parent 2f76047 commit 6df3936

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

hyperlink/test/test_url.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -532,10 +532,16 @@ def test_parseEqualSignInParamValue(self):
532532
"""
533533
u = URL.from_text('http://localhost/?=x=x=x')
534534
self.assertEqual(u.get(''), ['x=x=x'])
535-
self.assertEqual(u.to_text(), 'http://localhost/?=x%3Dx%3Dx')
535+
# TODO: see #38
536+
# self.assertEqual(u.to_text(), 'http://localhost/?=x%3Dx%3Dx')
536537
u = URL.from_text('http://localhost/?foo=x=x=x&bar=y')
537538
self.assertEqual(u.query, (('foo', 'x=x=x'), ('bar', 'y')))
538-
self.assertEqual(u.to_text(), 'http://localhost/?foo=x%3Dx%3Dx&bar=y')
539+
# TODO: see #38
540+
# self.assertEqual(u.to_text(), 'http://localhost/?foo=x%3Dx%3Dx&bar=y')
541+
542+
u = URL.from_text('https://example.com/?argument=3&argument=4&operator=%3D')
543+
iri = u.to_iri()
544+
self.assertEqual(iri.get('operator'), ['='])
539545

540546
def test_empty(self):
541547
"""

0 commit comments

Comments
 (0)