Party/tests/test_static.py
2023-07-05 14:25:18 +02:00

8 lines
199 B
Python

import pytest
from tests import client, app
class TestStatic:
def test_css_style(self, client):
response = client.get('/static/css/style.css')
assert response.status_code == 200