add api testing #14

Merged
dan merged 12 commits from api-stuff into dev 2023-12-09 12:34:28 +01:00
3 changed files with 3 additions and 7 deletions
Showing only changes of commit ee05c07feb - Show all commits

View file

@ -4,4 +4,4 @@ from pytest_abra import Runner, Test
class RunnerAuthentik(Runner):
env_type = "authentik"
setups = [Test(test_file="setup_authentik.py")]
# tests = [Test(test_file="test_authentik_dummy.py")]
tests = [Test(test_file="test_authentik_blueprint_api.py")]

View file

@ -0,0 +1,2 @@
# api testing
# https://playwright.dev/python/docs/api-testing

View file

@ -1,6 +0,0 @@
def test_true():
assert 1 + 1 == 2
def test_not_true():
assert 1 + 1 == 3