From 106e8dc91a76ea62e20acf0a0595f343e154af9b Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 7 May 2020 10:02:14 +0200 Subject: [PATCH] Completed test coverage for ExclusionConstraint. Dropping exclusion constraints was untested. --- tests/postgres_tests/test_constraints.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/postgres_tests/test_constraints.py b/tests/postgres_tests/test_constraints.py index 79c24c2d75..55b73778cc 100644 --- a/tests/postgres_tests/test_constraints.py +++ b/tests/postgres_tests/test_constraints.py @@ -390,6 +390,10 @@ class ExclusionConstraintTests(PostgreSQLTestCase): RangesModel.objects.create(ints=(10, 20)) RangesModel.objects.create(ints=(10, 19)) RangesModel.objects.create(ints=(51, 60)) + # Drop the constraint. + with connection.schema_editor() as editor: + editor.remove_constraint(RangesModel, constraint) + self.assertNotIn(constraint_name, self.get_constraints(RangesModel._meta.db_table)) def test_range_adjacent_initially_deferred(self): constraint_name = 'ints_adjacent_deferred'