(cls)
| 42 | |
| 43 | @classmethod |
| 44 | def setUpTestData(cls): |
| 45 | Band.objects.bulk_create( |
| 46 | [ |
| 47 | Band(name="Aerosmith", bio="", rank=3), |
| 48 | Band(name="Radiohead", bio="", rank=1), |
| 49 | Band(name="Van Halen", bio="", rank=2), |
| 50 | ] |
| 51 | ) |
| 52 | |
| 53 | def test_default_ordering(self): |
| 54 | """ |
nothing calls this directly
no test coverage detected