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

15 lines
306 B
Python
Raw Normal View History

2012-03-08 18:57:32 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
2011-08-22 17:37:21 +00:00
2015-07-18 21:03:45 +00:00
def get(*args, **kwargs):
2015-07-18 20:33:33 +00:00
from django.test.client import Client
client = Client()
2015-07-18 21:03:45 +00:00
return client.get(*args, **kwargs)
2011-08-22 17:37:21 +00:00
2015-07-18 21:03:45 +00:00
def post(*args, **kwargs):
2015-07-18 20:33:33 +00:00
from django.test.client import Client
client = Client()
2015-07-18 21:03:45 +00:00
return client.post(*args, **kwargs)