aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpack <pack@packgekko.xyz>2026-06-08 13:33:07 +0000
committerpack <pack@packgekko.xyz>2026-06-08 13:33:07 +0000
commit440d760882a27a3bc110dacaad92b6cfb29b5d7a (patch)
treec7f96b65025bf4ce455b7bcf6a325bf816994f3b
downloadqa_automation_bootcamp-440d760882a27a3bc110dacaad92b6cfb29b5d7a.tar.gz
scaffold: project structure
Diffstat (limited to '')
-rw-r--r--tests/README.md9
-rw-r--r--tests/init.py0
-rw-r--r--tests/requirements.txt2
-rw-r--r--tests/test_api_edge.py0
-rw-r--r--tests/test_api_get.py0
-rw-r--r--tests/test_api_post.py0
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