added test skeleton
This commit is contained in:
parent
b7fe49037f
commit
1158e6cc60
12
test_everything.py
Normal file
12
test_everything.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
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")
|
Reference in New Issue
Block a user