diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2020-09-02 10:56:23 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-09-16 07:38:32 +0200 |
| commit | cda0a3d7773b44c28669dfa1a41cb6203c5c298e (patch) | |
| tree | 70cd8c0f8831849a9a7acbb767fd196a2c9f4f71 | |
| parent | eaf9764d3bb25970da89de5799d8d308715628ba (diff) | |
Refs #29887, Refs #24212 -- Added more client servers tests for PyLibMCCache.
| -rw-r--r-- | tests/cache/tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py index 1c51c38b2b..9a800e2b6d 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -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: |
