diff options
Diffstat (limited to 'tests/views.py')
| -rw-r--r-- | tests/views.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/views.py b/tests/views.py index f989dcd..909a784 100644 --- a/tests/views.py +++ b/tests/views.py @@ -4,4 +4,9 @@ from django.http import HttpResponse def execute_sql(request): list(User.objects.all()) - return HttpResponse()
\ No newline at end of file + return HttpResponse() + +def resolving_view(request, arg1, arg2): + # see test_url_resolving in tests.py + return HttpResponse() + |
