14 lines
153 B
Python
14 lines
153 B
Python
|
import pytest
|
||
|
|
||
|
from flask import current_app
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
|
||
|
def test_log_code(client):
|
||
|
r = client.get('/log')
|
||
|
|
||
|
assert r.status_code == 204
|
||
|
|
||
|
|