mirror of
https://github.com/QualityInUse/lab-random-maksktl.git
synced 2026-08-05 12:05:27 +03:00
Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# This is the template for the InnoDrive e2e and domain and computation test cases.
|
||||
|
||||
import pytest
|
||||
from hypothesis import given
|
||||
import hypothesis.strategies as st
|
||||
|
||||
from httpx import Client
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def test_app():
|
||||
client = Client(base_url=" https://instructors.pg.innopolis.university/innodrive/")
|
||||
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
|
||||
@@ -0,0 +1,7 @@
|
||||
# This is the template for the TaskManager test cases for mutation testing.
|
||||
# Please add your tests below.
|
||||
|
||||
import pytest
|
||||
from taskManager.taskManager import TaskManager
|
||||
from taskManager.task import Task
|
||||
import os
|
||||
Reference in New Issue
Block a user