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
Fabian 32648d0f7a
Some checks failed
continuous-integration/drone/push Build is failing
tests added
2020-05-13 14:22:48 +02:00

22 lines
419 B
Python

import json
import os
import pytest
from flask import current_app
@pytest.fixture
def client():
current_app.config['TESTING'] = True
with current_app.test_client() as client:
yield client
def test_response_length(client):
data = {
"uuid": os.environ["LOCAL_UUID"],
"message": "Hello There!"
}
r = client.get('/consumers', data = json.dumps(data))
assert len(r) == 0