Blog Simple Django test settings

I always forget it; this is more a note to myelf: The simplest settings file to do Django tests is:

DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = ':memory:'
TEST_DATABASE_NAME = ":memory:"

Also check out Eric's simple Django test suite.