mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-15 00:44:34 +00:00
9 lines
149 B
Python
9 lines
149 B
Python
import pytest
|
|
from party import app
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
#app.config['TESTING'] = True
|
|
client = app.test_client()
|
|
yield client
|