(self)
| 1311 | ) |
| 1312 | |
| 1313 | def test_name(self): |
| 1314 | constraints = get_constraints(UniqueConstraintProduct._meta.db_table) |
| 1315 | expected_name = "name_color_uniq" |
| 1316 | self.assertIn(expected_name, constraints) |
| 1317 | |
| 1318 | def test_condition_must_be_q(self): |
| 1319 | with self.assertRaisesMessage( |
nothing calls this directly
no test coverage detected