summaryrefslogtreecommitdiffstats
path: root/hyperkitty/tests_conf/urls_test.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-11-30 14:27:46 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-11-30 14:27:46 +0100
commit716fee916da1096edb865bb43224594574d5a85b (patch)
tree96a48d79819c42843259ceaacdfd0405a6c7be4d /hyperkitty/tests_conf/urls_test.py
parent7bdb024a3245df9c5bd7148d749197449f674442 (diff)
downloadhyperkitty-716fee916da1096edb865bb43224594574d5a85b.tar.gz
hyperkitty-716fee916da1096edb865bb43224594574d5a85b.tar.xz
hyperkitty-716fee916da1096edb865bb43224594574d5a85b.zip
Add spec file and fix unit tests
Diffstat (limited to 'hyperkitty/tests_conf/urls_test.py')
-rw-r--r--hyperkitty/tests_conf/urls_test.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/hyperkitty/tests_conf/urls_test.py b/hyperkitty/tests_conf/urls_test.py
new file mode 100644
index 0000000..c4cd3a0
--- /dev/null
+++ b/hyperkitty/tests_conf/urls_test.py
@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+
+import hyperkitty
+
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('',
+ #url(r'^$', 'hyperkitty.views.pages.index'),
+ (r'^hyperkitty/', include('hyperkitty.urls')),
+ #url(r'', include('social_auth.urls')),
+)