When use with `create_list`, `build` method returns same instance every time · Issue #1499 · thoughtbot/factory_bot
Description I want to create Post record and Tag records on one transaction due to schema constraint and validation. So, I wrote FactoryBot.create(:post, tags: [FactoryBot.build(:tag)]) and works p...