Is there a possibility to write django unittests without setting up a db? I want to test business logic which doesn't require the db to set up. And while it is fast to setup a db, I really don't need it in some situations.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can subclass DjangoTestSuiteRunner and override setup_databases and teardown_databases methods to pass. Create a new settings file and set TEST_RUNNER to the new class you just created. Then when you're running your test, specify your new settings file with --settings flag. Here is what I did: Create a custom test suit runner similar to this:
Create a custom settings:
When you're running your tests, run it like the following with --settings flag set to your new settings file:
|
|||||||||||||||||
|
|
Do not subclass DjangoTestSuiteRunner the way the top answer says to do it, unless you want your database to be wiped out. See this article: http://blog.headspin.com/?p=434 |
|||
|
|