diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2018-06-21 18:25:31 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-06-21 09:25:31 -0400 |
| commit | a799dc51b9896c853d59f1e2c6549ce00da5c25f (patch) | |
| tree | ca5f358a8561b874321426bcc6812868efebc772 /tests | |
| parent | 12018cef83b2396131e8c32d997baa0f86b4bf00 (diff) | |
Fixed #29509 -- Added SpatiaLite support for covers and coveredby lookups.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/gis_tests/geoapp/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/gis_tests/geoapp/tests.py b/tests/gis_tests/geoapp/tests.py index cfc6829fff..7859adf219 100644 --- a/tests/gis_tests/geoapp/tests.py +++ b/tests/gis_tests/geoapp/tests.py @@ -421,6 +421,8 @@ class GeoLookupTest(TestCase): ('relate', (Point(1, 1), 'T*T***FF*')), ('same_as', Point(1, 1)), ('exact', Point(1, 1)), + ('coveredby', Point(1, 1)), + ('covers', Point(1, 1)), ] for lookup, geom in queries: with self.subTest(lookup=lookup): |
