From 716fee916da1096edb865bb43224594574d5a85b Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Fri, 30 Nov 2012 14:27:46 +0100 Subject: Add spec file and fix unit tests --- hyperkitty/tests_conf/urls_test.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hyperkitty/tests_conf/urls_test.py (limited to 'hyperkitty/tests_conf/urls_test.py') 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')), +) -- cgit