2017-02-12 04:37:49 +08:00
|
|
|
from django.db import connection
|
2018-11-27 03:05:02 +08:00
|
|
|
from django.test import SimpleTestCase
|
2017-02-12 04:37:49 +08:00
|
|
|
|
|
|
|
|
2018-11-27 03:05:02 +08:00
|
|
|
class TestDatabaseFeatures(SimpleTestCase):
|
2017-02-12 04:37:49 +08:00
|
|
|
|
|
|
|
def test_nonexistent_feature(self):
|
|
|
|
self.assertFalse(hasattr(connection.features, 'nonexistent'))
|