I want to use some tests in my tests.
I have a cms_sample application and a folder with documents inside: cms_sample_data.xml
I use the following in my test.py :
class Functionality(TestCase): fixtures = ['cms_sample_data']
I am using TestCase django.tests , not unittest .
But the appliances are not loaded. What am I missing?
django unit-testing testing fixtures
alexarsh
source share