Skip to content

Instantly share code, notes, and snippets.

View obrianthe1st's full-sized avatar

Obrianthe1st obrianthe1st

View GitHub Profile
@cwurld
cwurld / django_testcase_cheatsheet.py
Last active June 23, 2022 23:51
Django TestCase Cheatsheet
__author__ = 'chuck'
from urlparse import urlparse
from django.core.urlresolvers import reverse
from django.test import TestCase
from django.test.client import Client
from django.conf import settings
from django.contrib.auth.models import User, Group
from django.core.cache import cache