comparison gpp/test_settings.py @ 214:28988cce138b

Implement #83: a string filter facility like NukeSeSentinel. It currently isn't hooked up to anything. Will do that in #84.
author Brian Neal <bgneal@gmail.com>
date Fri, 14 May 2010 02:19:48 +0000
parents
children 767cedc7d12a
comparison
equal deleted inserted replaced
213:65016249bf35 214:28988cce138b
1 """
2 Settings to use when running tests. Uses sqlite for speed.
3 This idea was taken from
4 http://blog.davidziegler.net/post/370368042/test-database-settings-in-django
5 """
6 from settings import *
7
8 DATABASES = {
9 'default': {
10 'ENGINE': 'django.db.backends.sqlite3',
11 'NAME': 'dev.db',
12 },
13 }