diff options
| -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 |