diff options
| author | pack <pack@packgekko.xyz> | 2026-06-08 13:33:07 +0000 |
|---|---|---|
| committer | pack <pack@packgekko.xyz> | 2026-06-08 13:33:07 +0000 |
| commit | 440d760882a27a3bc110dacaad92b6cfb29b5d7a (patch) | |
| tree | c7f96b65025bf4ce455b7bcf6a325bf816994f3b | |
| download | qa_automation_bootcamp-440d760882a27a3bc110dacaad92b6cfb29b5d7a.tar.gz | |
scaffold: project structure
| -rw-r--r-- | tests/README.md | 9 | ||||
| -rw-r--r-- | tests/init.py | 0 | ||||
| -rw-r--r-- | tests/requirements.txt | 2 | ||||
| -rw-r--r-- | tests/test_api_edge.py | 0 | ||||
| -rw-r--r-- | tests/test_api_get.py | 0 | ||||
| -rw-r--r-- | tests/test_api_post.py | 0 |
6 files changed, 11 insertions, 0 deletions
diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..0858884 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,9 @@ +# QA Automation Bootcamp + +Automated API test suite for REST endpoint validation. + +## Run + +```bash +pip install -r requirements.txt +pytest -v diff --git a/tests/init.py b/tests/init.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/init.py diff --git a/tests/requirements.txt b/tests/requirements.txt new file mode 100644 index 0000000..547de5c --- /dev/null +++ b/tests/requirements.txt @@ -0,0 +1,2 @@ +pytest +requests diff --git a/tests/test_api_edge.py b/tests/test_api_edge.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/test_api_edge.py diff --git a/tests/test_api_get.py b/tests/test_api_get.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/test_api_get.py diff --git a/tests/test_api_post.py b/tests/test_api_post.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/test_api_post.py |