Skip to content Skip to sidebar Skip to footer
Showing posts with the label Django Testing

Make Liveservertestcase Not To Call Setup() Before Each Test

I have one problem with testing django app by using LiveServerTestCase. LiveServerTestCase execute … Read more Make Liveservertestcase Not To Call Setup() Before Each Test

Django Test Object Created Is Empty

I am trying to follow instructions from the Django documentation: https://docs.djangoproject.com/en… Read more Django Test Object Created Is Empty

Problems Using User Model In Django Unit Tests

I have the following django test case that is giving me errors: class MyTesting(unittest.TestCase):… Read more Problems Using User Model In Django Unit Tests

Broken Pipe Error While Running Django-test With Selenium

while running django tests with selenium (no remote, no xvfb), I always get the following exception… Read more Broken Pipe Error While Running Django-test With Selenium

Django 1.5.1 'importerror: No Module Named Urls' When Running Tests

I've started project with Django 1.5 I've the following urls, views, and tests of the profi… Read more Django 1.5.1 'importerror: No Module Named Urls' When Running Tests

Adding Extra Filter To Polls Urls.py Causes Tests To Fail

Following the tutorial at djangoproject, I have tried to have urls.py filter out the polls with no … Read more Adding Extra Filter To Polls Urls.py Causes Tests To Fail

How Can I Unit Test Django Messages?

In my django application, I'm trying to write a unit test that performs an action and then chec… Read more How Can I Unit Test Django Messages?