mirror of
https://github.com/django/django.git
synced 2025-03-12 02:12:38 +00:00
This commit is contained in:
parent
eaf9764d3b
commit
cda0a3d777
5
tests/cache/tests.py
vendored
5
tests/cache/tests.py
vendored
@ -1446,6 +1446,11 @@ class PyLibMCCacheTests(BaseMemcachedTests, TestCase):
|
||||
tests = [
|
||||
('unix:/run/memcached/socket', '/run/memcached/socket'),
|
||||
('/run/memcached/socket', '/run/memcached/socket'),
|
||||
('localhost', 'localhost'),
|
||||
('localhost:11211', 'localhost:11211'),
|
||||
('[::1]', '[::1]'),
|
||||
('[::1]:11211', '[::1]:11211'),
|
||||
('127.0.0.1', '127.0.0.1'),
|
||||
('127.0.0.1:11211', '127.0.0.1:11211'),
|
||||
]
|
||||
for location, expected in tests:
|
||||
|
Loading…
x
Reference in New Issue
Block a user