RSpec错误:从FactoryGirl迁移到FactoryBot后,未注册工厂

时间:2019-01-30 11:31:47

标签: factory-bot

使用快速迁移instructions将工厂FactoryGirl迁移到FactoryBot之后,我在RSpec中关于工厂注册的测试中出现了错误。

ArgumentError:
   Factory not registered: user

1 个答案:

答案 0 :(得分:0)

大量研究之后,我找到了解决方法here

spec_helper.rb

中包含以下代码
config.before(:all) do
    FactoryBot.reload
end