Welcome to the User Management System Tests project! 🎉
This is a lightweight test suite written in Python to validate CRUD operations (Create, Read, Update, Delete) on a simple user database using SQLite and pytest.
user_project/
├── user_db.py # CRUD operations using sqlite3
├── test_user_db.py # Pytest test casesgit clone https://github.com/your-username/user-management-system-test.git
cd user-management-system-testpython -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activatepip install pytestTo run all test cases using pytest, simply run:
pytest✅ Create a new user
🔍 Retrieve a user by username
✏️ Update user email
❌ Delete a user
Python 🐍
SQLite (in-memory) 🗄️
Pytest 🧪
This project is open-source and free to use under the MIT License.