Searched refs:checkJoin (Results 1 – 1 of 1) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_urlparse.py | 145 def checkJoin(self, base, relurl, expected): member in UrlParseTestCase 156 self.checkJoin(RFC1808_BASE, 'g:h', 'g:h') 157 self.checkJoin(RFC1808_BASE, 'g', 'http://a/b/c/g') 158 self.checkJoin(RFC1808_BASE, './g', 'http://a/b/c/g') 159 self.checkJoin(RFC1808_BASE, 'g/', 'http://a/b/c/g/') 160 self.checkJoin(RFC1808_BASE, '/g', 'http://a/g') 161 self.checkJoin(RFC1808_BASE, '//g', 'http://g') 162 self.checkJoin(RFC1808_BASE, 'g?y', 'http://a/b/c/g?y') 163 self.checkJoin(RFC1808_BASE, 'g?y/./x', 'http://a/b/c/g?y/./x') 164 self.checkJoin(RFC1808_BASE, '#s', 'http://a/b/c/d;p?q#s') [all …]
|