mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-23 08:51:30 -05:00
8 lines
228 B
Python
8 lines
228 B
Python
|
|
from notifications_utils.clients.redis import rate_limit_cache_key
|
||
|
|
|
||
|
|
|
||
|
|
def test_rate_limit_cache_key(sample_service):
|
||
|
|
assert rate_limit_cache_key(sample_service.id, "TEST") == "{}-TEST".format(
|
||
|
|
sample_service.id
|
||
|
|
)
|