(Comments)
Django: Best way to unit-test an abstract model - Stack Overflow
https://stackoverflow.com/questions/4281670/django-best-way-to-unit-test-an-abstract-model
こちらを参考に
Share on Twitter Share on Facebook
class CodeMemoBaseTest(TestCase):
model = None
@classmethod
def setUpClass(cls):
cls.model = ModelBase(
'__TestModel__' +
CodeMemoBase.__name__, (CodeMemoBase,),
{'__module__': CodeMemoBase.__module__}
)
# Create the schema for our test model
with connection.schema_editor() as schema_editor:
schema_editor.create_model(cls.model)
super().setUpClass()
@classmethod
def tearDownClass(cls):
# Delete the schema for the test model
with connection.schema_editor() as schema_editor:
schema_editor.delete_model(cls.model)
super().tearDownClass()
これまでいろんなグッズを作ってきたけど、今回は「お米」と聞いて買うしかないなと。今夜の夕食はコシヒカリ!箸もセットだし^^ https://t.co/01ucQx9qtw #腰乃展 #マンガ展 https://t.co/4VL2vOe0Og
1 year, 3 months ago
講談社さんとやった全部入り電子書籍セットがギネスブックに登録されたよー https://t.co/rbkd3IYub0
1 year, 3 months ago
Comments