Refs #29887, Refs #24212 -- Added more client servers tests for PyLibMCCache.

This commit is contained in:
Nick Pope 2020-09-02 10:56:23 +01:00 committed by Mariusz Felisiak
parent eaf9764d3b
commit cda0a3d777
1 changed files with 5 additions and 0 deletions

View File

@ -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: