Updated testing methodology to not create test scripts and just test in main code.

This commit is contained in:
2026-03-10 17:03:37 -07:00
parent 594c51faea
commit 52b699564e
4 changed files with 6 additions and 23 deletions

View File

@@ -11,8 +11,6 @@ ProjectName/
├── README.md
├── Modules/
│ └── ProjectName.psm1 # Shared functions, config loading, helpers
├── Tests/
│ └── *.Tests.ps1 # Pester test files
└── Release-Notes/
├── v1.0.md
└── v1.1.md
@@ -53,15 +51,12 @@ project-name/
├── routers/
│ ├── auth.py
│ └── [resource].py
── utils/
└── tests/
└── test_[resource].py
── utils/
```
**Rules:**
- `.env` is never committed — `.env.example` always is
- Each resource (users, items, etc.) gets its own model, schema, and router file
- Tests live inside `backend/app/tests/`
---