django/tests/backends/base/test_features.py

9 lines
229 B
Python
Raw Normal View History

2017-02-11 20:37:49 +00:00
from django.db import connection
from django.test import SimpleTestCase
2017-02-11 20:37:49 +00:00
class TestDatabaseFeatures(SimpleTestCase):
2017-02-11 20:37:49 +00:00
def test_nonexistent_feature(self):
self.assertFalse(hasattr(connection.features, 'nonexistent'))