エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Passing an object created with SubFactory and LazyAttribute to a RelatedFactory in factory_boy
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Passing an object created with SubFactory and LazyAttribute to a RelatedFactory in factory_boy
I am using factory.LazyAttribute within a SubFactory call to pass in an object, created in the fa... I am using factory.LazyAttribute within a SubFactory call to pass in an object, created in the factory_parent. This works fine. But if I pass the object created to a RelatedFactory, LazyAttribute can no longer see the factory_parent and fails. This works fine: class OKFactory(factory.DjangoModelFactory): class = Meta: model = Foo exclude = ['sub_object'] sub_object = factory.SubFactory(SubObjectFa
2021/04/01 リンク