django/tests/backends/base/test_features.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
228 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"))