This project demonstrates how to write unit and API tests for a custom Flask-based API using Python’s unittest module.
- Create user (
POST /users) - Get all users (
GET /users) - Update user (
PUT /users/<id>) - Delete user (
DELETE /users/<id>)
- Python 3
- Flask
- unittest
- coverage (for test coverage report)
python api.py