mirror of
https://github.com/revanced/revanced-api.git
synced 2025-04-29 22:24:31 +02:00

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
18 lines
436 B
Python
18 lines
436 B
Python
# import pytest
|
|
# from sanic import Sanic
|
|
|
|
# from api.models.appinfo import AppInfoModel
|
|
|
|
# from config import api_version, apkdl_testing_package
|
|
|
|
# # socials
|
|
|
|
|
|
# @pytest.mark.asyncio
|
|
# async def test_socials(app: Sanic):
|
|
# _, response = await app.asgi_client.get(
|
|
# f"/{api_version}/app/info/{apkdl_testing_package}"
|
|
# )
|
|
# assert response.status == 200
|
|
# assert AppInfoModel(app_info=response.json["app_info"])
|