(self, r)
| 2069 | assert 0 < r.ttl("a") <= 61 |
| 2070 | |
| 2071 | def test_expireat_no_key(self, r): |
| 2072 | expire_at = redis_server_time(r) + datetime.timedelta(minutes=1) |
| 2073 | assert r.expireat("a", expire_at) is False |
| 2074 | |
| 2075 | def test_expireat_unixtime(self, r): |
| 2076 | expire_at = redis_server_time(r) + datetime.timedelta(minutes=1) |
nothing calls this directly
no test coverage detected