added cargo files

This commit is contained in:
2026-03-03 10:57:43 -05:00
parent 478a90e01b
commit 169df46bc2
813 changed files with 227273 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
import pytest
import pytest_asyncio
@pytest.mark.asyncio
async def test_health_check(async_client):
"""Test the health check endpoint"""
response = await async_client.get("/api/pinepods_check")
assert response.status_code == 200
# Check for the expected response data
assert response.json() == {"status_code": 200, "pinepods_instance": True}