Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add urls for testing
  • Loading branch information
Akuryou committed Dec 5, 2012
1 parent 737936b commit 91eef59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions skrill/tests/runtests.py
Expand Up @@ -40,6 +40,7 @@
}
},
INSTALLED_APPS=INSTALLED_APPS,
ROOT_URLCONF='skrill.tests.urls',
COVERAGE_MODULE_EXCLUDES=COVERAGE_MODULE_EXCLUDES,
COVERAGE_REPORT_HTML_OUTPUT_DIR=os.path.join(
os.path.dirname(__file__), 'coverage'),
Expand Down
7 changes: 7 additions & 0 deletions skrill/tests/urls.py
@@ -0,0 +1,7 @@
from django.conf.urls.defaults import include, patterns, url


urlpatterns = patterns('',
url(r'^', include('skrill.urls', namespace="skrill")),
)

0 comments on commit 91eef59

Please sign in to comment.