I have written tests for a Django project that i am working on, but one particular fixture fails to load. The fixture is generated using dumpdata and i havent fiddled with it at
Import the TestCase from django.test
:
from django.test import TestCase
class test_something(TestCase):
fixtures = ['one.json', 'two.json']
...
import unittest
import django.utils.unittest
import django.test
That's a day of frustration right there. Stop complaining - it's in the docs :-/