aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README15
-rw-r--r--README.md9
2 files changed, 15 insertions, 9 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..12d8991
--- /dev/null
+++ b/README
@@ -0,0 +1,15 @@
+QA Automation Bootcamp
+======================
+
+Automated API test suite for REST endpoint validation.
+
+Run:
+ pip install -r requirements.txt
+ pytest -v
+
+What it tests:
+ - GET request status codes and response schemas
+ - POST request payload validation
+ - Edge cases: empty payloads, invalid IDs, missing fields
+
+Stack: Python 3, pytest, requests
diff --git a/README.md b/README.md
deleted file mode 100644
index 0858884..0000000
--- a/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# QA Automation Bootcamp
-
-Automated API test suite for REST endpoint validation.
-
-## Run
-
-```bash
-pip install -r requirements.txt
-pytest -v