summaryrefslogtreecommitdiff
path: root/tests/backends/base/test_features.py
blob: f8a8e945e0a5daa44660e7c184ba731cf8f8eb3a (plain)
1
2
3
4
5
6
7
from django.db import connection
from django.test import SimpleTestCase


class TestDatabaseFeatures(SimpleTestCase):
    def test_nonexistent_feature(self):
        self.assertFalse(hasattr(connection.features, "nonexistent"))