summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_cluster.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_asyncio/test_cluster.py')
-rw-r--r--tests/test_asyncio/test_cluster.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_asyncio/test_cluster.py b/tests/test_asyncio/test_cluster.py
index 6543e28..6c28ce3 100644
--- a/tests/test_asyncio/test_cluster.py
+++ b/tests/test_asyncio/test_cluster.py
@@ -244,6 +244,11 @@ class TestRedisClusterObj:
await cluster.close()
+ startup_nodes = [ClusterNode("127.0.0.1", 16379)]
+ async with RedisCluster(startup_nodes=startup_nodes) as rc:
+ assert await rc.set("A", 1)
+ assert await rc.get("A") == b"1"
+
async def test_empty_startup_nodes(self) -> None:
"""
Test that exception is raised when empty providing empty startup_nodes