Pages
Categories
Tag Archives: testing
Organizing Django Tests into Folders
Update: Due to some strange Django error, Django will refuse to run your app’s tests if your application doesn’t have a models.py file. You’ll need to create an empty models.pyin your app’s folder if you don’t have one Django comes with a nice testing rig that lets you individually test each app. By using a [...]
Unit Tests in Django