From e016c4c65b4aa0521a74e1cba6f75a596ee9ee1c Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Sat, 26 Aug 2017 16:32:03 +0200 Subject: Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None. --- tests/postgres_tests/test_indexes.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/postgres_tests') diff --git a/tests/postgres_tests/test_indexes.py b/tests/postgres_tests/test_indexes.py index ae4895a03e..ac19f53ab8 100644 --- a/tests/postgres_tests/test_indexes.py +++ b/tests/postgres_tests/test_indexes.py @@ -84,6 +84,13 @@ class GinIndexTests(PostgreSQLTestCase): } ) + def test_deconstruct_no_args(self): + index = GinIndex(fields=['title'], name='test_title_gin') + path, args, kwargs = index.deconstruct() + self.assertEqual(path, 'django.contrib.postgres.indexes.GinIndex') + self.assertEqual(args, ()) + self.assertEqual(kwargs, {'fields': ['title'], 'name': 'test_title_gin'}) + class SchemaTests(PostgreSQLTestCase): -- cgit v1.3