| 88 | apps = new_apps |
| 89 | |
| 90 | class FoodNoDefaultManager(models.Model): |
| 91 | food_no_mgr = NoMigrationFoodManager("x", "y") |
| 92 | food_mgr = FoodManager("a", "b") |
| 93 | food_qs = FoodQuerySet.as_manager() |
| 94 | |
| 95 | class Meta: |
| 96 | app_label = "migrations" |
| 97 | apps = new_apps |
| 98 | |
| 99 | mgr1 = FoodManager("a", "b") |
| 100 | mgr2 = FoodManager("x", "y", c=3, d=4) |
nothing calls this directly
no test coverage detected