Initial commit

This commit is contained in:
github-classroom[bot]
2024-03-07 07:37:17 +00:00
committed by GitHub
commit 1ac2ff12de
5 changed files with 538 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# This is the template for the InnoDrive e2e and domain and computation test cases.
import pytest
from httpx import Client
@pytest.fixture(scope="module")
def test_app():
client = Client(base_url="https://innodrive.containers.cloud.ru")
yield client # testing happens here
@pytest.mark.parametrize("email", ["i.ivanov@innopolis.university"])
def test_spec(test_app, email):
response = test_app.get("/spec/"+email)
assert response.status_code == 200