rebranding
[django-pagination.git] / fnp_django_pagination / tests / settings.py
1 DATABASES = {
2     'default': {
3         'NAME': ':memory:',
4         'ENGINE': 'django.db.backends.sqlite3',
5     }
6 }
7
8 SECRET_KEY = 'fake-key'
9
10 INSTALLED_APPS = (
11     'fnp_django_pagination',
12 )