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

11 lines
148 B
Python
Raw Normal View History

2020-05-08 20:36:45 +02:00
import pytest
from flask import current_app
@pytest.fixture
2020-05-08 20:55:47 +02:00
def test_response_length(client):
r = client.get('/log')
2020-05-08 20:36:45 +02:00
2020-05-08 20:55:47 +02:00
assert len(r) == 0