Skip to content

Category Archives: Django

Django, Testing, and Sessions

Working on my new site, I wanted to test a view. I’m new to python and the django, so I’m incrementally increasing my tool usage. Currently I’m sticking to unittest. I needed to set a session var, but the docs are a little light — so here’s what I did: import unittest from django.conf import [...]