Skip to content

Commit

Permalink
Add getMembers test
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Sep 4, 2023
1 parent 5d2c6d7 commit 5ff7ce6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ dev = [
"flake8 == 6.1.*",
"black == 23.7.*",
"isort == 5.12.*",
"mypy == 1.5.*"
"mypy == 1.5.*",
"requests == 2.31.0",
"pyparsing",
]


Expand Down
6 changes: 6 additions & 0 deletions tests/test_getMembers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import pytest
import requests

def test_getMembers():
response = requests.get("http://localhost:8080/getMembers")
assert response.status_code == 200

0 comments on commit 5ff7ce6

Please sign in to comment.