From 66b6b689239dad3f017d2a3495df748cbee5debb Mon Sep 17 00:00:00 2001 From: Mushtaq Ali Date: Fri, 6 Jul 2018 20:26:14 +0500 Subject: Fixed #29543 -- Fixed CPointerBase.__del__() ImportError crash. --- tests/gis_tests/test_ptr.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/gis_tests/test_ptr.py b/tests/gis_tests/test_ptr.py index ca318a28eb..1d80e24f92 100644 --- a/tests/gis_tests/test_ptr.py +++ b/tests/gis_tests/test_ptr.py @@ -64,3 +64,11 @@ class CPointerBaseTests(SimpleTestCase): fg.ptr = ptr del fg destructor_mock.assert_called_with(ptr) + + def test_destructor_catches_importerror(self): + class FakeGeom(CPointerBase): + destructor = mock.Mock(side_effect=ImportError) + + fg = FakeGeom() + fg.ptr = fg.ptr_type(1) + del fg -- cgit v1.3