summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-03-07 01:33:42 +0200
committerGitHub <noreply@github.com>2022-03-07 01:33:42 +0200
commitf987a0cc86bd37aeaec3d73547c6176b651acd7b (patch)
tree323dca5f5939a7c1c2875d815bc2dec6f1cdb109 /tests/test_commands.py
parent4dc48d610f009ad14ff19ec7fcc3ac5c960d9490 (diff)
downloadredis-py-f987a0cc86bd37aeaec3d73547c6176b651acd7b.tar.gz
Add support for EXPIRETIME (#1860)
* add expiretime * skip test
Diffstat (limited to 'tests/test_commands.py')
-rw-r--r--tests/test_commands.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index f165120..be60b6e 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -1075,6 +1075,12 @@ class TestRedisCommands:
assert r.expireat("a", expire_at_seconds) is True
assert 0 < r.ttl("a") <= 61
+ @skip_if_server_version_lt("7.0.0")
+ def test_expiretime(self, r):
+ r.set("a", "foo")
+ r.expireat("a", 33177117420)
+ assert r.expiretime("a") == 33177117420
+
def test_get_and_set(self, r):
# get and set can't be tested independently of each other
assert r.get("a") is None