I'm trying to load some fixtures within my Django tests, but they don't seem to load.
In my settings.py, I specify:
FIXTURE_DIRS = (os.path.join(PROJECT_DIR, 'dhtmlScheduler\\fixtures\\'))
Now, within my test case:
def setUp(self):
fixtures = ['users.json', 'employee.json']
I should also probably mention that I'm using the Nose test runner:
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
and unittest:
class TestEmployee(unittest.TestCase):
I must be missing something obvious, can someone point me in the right direction?