mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Added more tests for HttpRequest.build_absolute_uri().
This commit is contained in:
parent
366451880a
commit
e2908ecb3e
@ -797,8 +797,11 @@ class BuildAbsoluteURITests(SimpleTestCase):
|
||||
('http://example.com/?foo=bar', 'http://example.com/?foo=bar'),
|
||||
# A schema-relative URL
|
||||
('//example.com/?foo=bar', 'http://example.com/?foo=bar'),
|
||||
# A relative URL
|
||||
# Relative URLs
|
||||
('/foo/bar/', 'http://testserver/foo/bar/'),
|
||||
('/foo/./bar/', 'http://testserver/foo/bar/'),
|
||||
('/foo/../bar/', 'http://testserver/bar/'),
|
||||
('///foo/bar/', 'http://testserver/foo/bar/'),
|
||||
)
|
||||
for location, expected_url in tests:
|
||||
with self.subTest(location=location):
|
||||
|
Loading…
Reference in New Issue
Block a user