Changes between Initial Version and Version 1 of Ticket #35722
- Timestamp:
- Aug 30, 2024, 5:11:09 AM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35722 – Description
initial v1 11 11 with self.subTest(): 12 12 lion = Animal.objects.create(name="lion", sound="roar") 13 self.assertEqual(lion.pk, 1) 14 with self.subTest(): 15 cat = Animal.objects.create(name="cat", sound="meow") 13 16 # will this still work? 14 self.assertEqual(lion.pk, 1) 17 self.assertEqual(cat.pk, 1) 18 15 19 }}} 16 20 add to documentation 1 sentence along the lines of: