aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf/test_settings.py
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2012-08-03 10:42:20 +0100
committerMarc Tamlyn <marc.tamlyn@gmail.com>2012-08-03 10:42:20 +0100
commit9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280 (patch)
treed0a366e7d4a0d5bec761ff7418e6f59cfbf43805 /wkhtmltopdf/test_settings.py
parentdc9f1fb46f587f2b8dbbfc440a72944b183c0fcd (diff)
downloaddjango-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.tar.gz
django-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.tar.bz2
django-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.zip
Move tests into wkhtmltopdf.tests.*
Fixes #11.
Diffstat (limited to 'wkhtmltopdf/test_settings.py')
-rw-r--r--wkhtmltopdf/test_settings.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/wkhtmltopdf/test_settings.py b/wkhtmltopdf/test_settings.py
new file mode 100644
index 0000000..37d086f
--- /dev/null
+++ b/wkhtmltopdf/test_settings.py
@@ -0,0 +1,16 @@
+DEBUG = True
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': ':memory:',
+ }
+}
+
+MEDIA_URL = ''
+STATIC_URL = ''
+
+INSTALLED_APPS = (
+ 'wkhtmltopdf.tests',
+ 'wkhtmltopdf',
+)