Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
422 views

What is the clean way to unittest FileField in django?

I have a model with a FileField. I want to unittest it. django test framework has great ways to manage database and emails. Is there something similar for FileFields? How can I make sure that the ...
3
votes
1answer
97 views

Change the default domain of Client() in unittest of Django

I am writing a unit test for Django views. class TestLog(unittest.TestCase): """Test for Contact""" def setUp(self): self.c = Client() try: self.bob = ...
2
votes
2answers
67 views

How do I test a Django site that uses UDFs in the database?

I have a django project that uses a postgres db with a number of UDFs. The UDFs are written in plpythonu. Since plpyhtonu is an untrusted language, only database super users can use it to to create ...
1
vote
1answer
117 views

Importing the django.test does not work

As it is failing to import django.test module, unit test does not work. >>> import django.test Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
1
vote
0answers
152 views

Django unit tests spews database error - cannot commit transaction - SQL statements in progress

I'm using unittest2 together with manage.py test, and before it even seems to run any tests, it spews a horrid database error, as below. I'm in my development environment (actually on a dreamhost ...
1
vote
2answers
429 views

Running the django tests using fabric

I have a fabric script that attempts to run the tests for an application that I wrote. It is already installed using setup.py and I am able to import it. I am following the script I found here. My ...
0
votes
1answer
42 views

Django Unittest doesn't load fixtures

Django testrunner is not loading fixtures out of media app fixtures/ directory. How can I debug it - find if it's looking for my fixtures and where? (Python 2.7.1, Django 1.3.1) My app ...
0
votes
1answer
38 views

Testing for expected 404 with Django test client leads to unhandled exception

I'm using the Django test client, django.test.client.Client, to test some views in a Django app. In particular, I'm testing a case where the view calls a get_object_or_404 method and the object isn't ...
0
votes
1answer
54 views

Execute Unittest in Django

I have written a small unit test for my django view .My project structure is like Project_name/ apps/ module1/ tests.py module2/ ...