Completed
Branch master (28ef54)
by Fox
01:25
created

ThSearchTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 7
rs 10
wmc 1
1
from django.test import TestCase
2
from django.conf import settings
3
4
5
class ThSearchTest(TestCase):
6
7
    def test_get_config_th(self):
8
        """
9
            does this settings exists ?
10
        """
11
        self.assertTrue(settings.HAYSTACK_CONNECTIONS)
12