我有一种情况,我需要在功能测试类中为不同的情况加载不同的夹具
class Mytest(LiveServerTestCase):
fixtures = ['somefixture.json']
def test_some_test_method(self):
#load more fixtures for this test case
fixtures.extend(['some_other_fixture.json'])
django 支持这个,我该怎么做?