mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 16:14:36 +00:00
8 lines
199 B
Python
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
|