機能テスト クラスのさまざまなケースに対してさまざまなフィクスチャをロードする必要がある状況があります。
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 はこれをサポートしていますか?