Python: Add library tests for django.

This commit is contained in:
Mark Shannon
2019-04-12 16:14:14 +01:00
parent 46b9ef79b4
commit 90bbfd3b16
9 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
from .response import HttpResponse
from .request import HttpRequest

View File

@@ -0,0 +1,2 @@
class HttpRequest(object):
pass

View File

@@ -0,0 +1,2 @@
class HttpResponse(object):
pass