Files
py12306/tests/test_redis.py
2019-05-14 18:07:06 +08:00

10 lines
211 B
Python

from py12306.lib.redis_lib import Redis
from tests.helper import BaseTest
class TestRedis(BaseTest):
def test_connection(self):
res = Redis.share().info()
self.assertIsInstance(res, dict)