comparison gpp/settings/test.py @ 499:1a09a7bea000

For #236, switch to a settings package scheme.
author Brian Neal <bgneal@gmail.com>
date Wed, 30 Nov 2011 02:41:18 +0000
parents
children 82b97697312e
comparison
equal deleted inserted replaced
498:b137a0966e4b 499:1a09a7bea000
1 """
2 Settings to use when running tests. Uses sqlite for speed.
3
4 """
5 from settings.base import *
6
7 DATABASES = {
8 'default': {
9 'ENGINE': 'django.db.backends.sqlite3',
10 'NAME': 'dev.db',
11 },
12 }
13
14 # For unit-testing the Donations module w/o using the Paypal sandbox
15 DONATIONS_DEBUG_VERIFY_RESPONSE = 'VERIFIED'
16 DONATIONS_BUSINESS_DEBUG = 'brian@surfguitar101.com'