add one more parent path test

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2657 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2005-06-12 21:19:12 +00:00
parent a26e78c0c2
commit 51e4657cf6

View file

@ -195,6 +195,8 @@ class TestUrl (unittest.TestCase):
self.assertEqual(url_norm(url), nurl)
url = "http://example.com/a/../a/b"
self.assertEqual(url_norm(url), nurl)
url = "http://example.com/../a/b"
self.assertEqual(url_norm(url), nurl)
def test_norm_path_relative_dots (self):
"""