0
0
mirror of https://github.com/django/django.git synced 2024-11-29 22:56:46 +01:00
django/tests/backends/base/test_features.py

9 lines
229 B
Python
Raw Normal View History

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