13 lines
337 B
Python
13 lines
337 B
Python
from redis_super_storage import RedisSuperStorage
|
|
from communicators import ConsumerCommunicator, ProducerCommunicator
|
|
from ip_watchdog import IPWatchdog
|
|
import pytest
|
|
import redis
|
|
|
|
|
|
def test_something(mocker):
|
|
mocker.patch("redis.from_url")
|
|
rst = RedisSuperStorage("test", 2)
|
|
|
|
redis.from_url.assert_called_once_with("test")
|