public
Description: Functional tests for Gaebar running on app-engine-patch-based Django app.
Homepage: http://aralbalkan.com/1784
Clone URL: git://github.com/aral/gaebar-aep.git
gaebar-aep / urls.py
100755 12 lines (10 sloc) 0.39 kb
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-
from django.conf.urls.defaults import *
 
from app1 import views as app1_views
 
urlpatterns = patterns('',
    url(r'^gaebar/', include('gaebar.urls')),
    url(r'^populate-datastore', view=app1_views.populate_datastore),
    url(r'^run-tests', view=app1_views.run_tests),
    url(r'^flush', view=app1_views.flush_datastore),
    url(r'', view=app1_views.index),
)