This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/django_pyvows/http_helpers.py
2015-07-18 23:03:45 +02:00

15 lines
306 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
def get(*args, **kwargs):
from django.test.client import Client
client = Client()
return client.get(*args, **kwargs)
def post(*args, **kwargs):
from django.test.client import Client
client = Client()
return client.post(*args, **kwargs)