This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-api/consumer_api/tests/consumers_view_test.py

22 lines
339 B
Python
Raw Normal View History

2020-05-14 13:54:19 +02:00
import db
2020-05-08 20:36:45 +02:00
import pytest
2020-05-14 13:54:19 +02:00
2020-05-08 20:36:45 +02:00
@pytest.fixture
2020-05-14 13:54:19 +02:00
def client(mocker):
mocker.patch("db.redis_client")
db.redis_client.get.side_effect=lambda a: None
from app import app
2020-05-08 21:02:49 +02:00
2020-05-14 13:54:19 +02:00
app.config['TESTING'] = True
with app.test_client() as client:
2020-05-08 21:03:40 +02:00
yield client
2020-05-08 21:02:49 +02:00
2020-05-08 21:04:13 +02:00
2020-05-08 20:55:47 +02:00
def test_response_length(client):
2020-05-14 13:54:19 +02:00
r = client.get('/consumers')