mirror of
https://github.com/PaiGramTeam/FixMiYouShe.git
synced 2024-11-28 02:06:38 +00:00
11 lines
151 B
Python
11 lines
151 B
Python
|
import pytest
|
||
|
|
||
|
from main import main
|
||
|
|
||
|
|
||
|
@pytest.mark.asyncio
|
||
|
class TestAPP:
|
||
|
@staticmethod
|
||
|
async def test_app():
|
||
|
assert main is not None
|