(cls)
| 454 | class AssertNumQueriesContextManagerTests(TestCase): |
| 455 | @classmethod |
| 456 | def setUpTestData(cls): |
| 457 | cls.person_pk = str(Person.objects.create(name="test").pk) |
| 458 | cls.url = f"/test_utils/get_person/{cls.person_pk}/" |
| 459 | |
| 460 | def test_simple(self): |
| 461 | with self.assertNumQueries(0): |