1
0
mirror of https://github.com/django/django.git synced 2024-12-24 10:05:46 +00:00
django/tests/gis_tests/gdal_tests/tests.py

12 lines
320 B
Python
Raw Normal View History

import unittest
from django.contrib.gis.gdal import GDAL_VERSION, gdal_version
class GDALTest(unittest.TestCase):
def test_gdal_version(self):
if GDAL_VERSION:
self.assertEqual(gdal_version(), ('%s.%s.%s' % GDAL_VERSION).encode())
else:
self.assertIn(b'.', gdal_version())