FactoryGirl 警告 Sequence#next 已弃用
我正在使用 FactoryGirl 和 Shoulda 来测试我的应用程序。
实际上我的代码工作正常,但我收到警告 #next 方法已被弃用。 我找不到如何避免这种情况的解决方案。我看不到任何建议的地方 运行方法..一些意见?
Factory.define :user do |user|
user.first_name 'John'
user.last_name 'Sheppard'
user.after_create { |_t| _t.contact.update_attribute :email, Factory.next(:email) }
end
Factory.sequence :email do |n|
"john#{n}[email protected]"
end
警告:FactoryGirl::Sequence#next 已弃用。 请改用#run。
I am using FactoryGirl with Shoulda to test my application.
Actually my code works fine, but I am getting warning that #next method was deprecated.
I can't find solution how to avoid this. I can't see anywhere the proposed
run method.. Some opinions?
Factory.define :user do |user|
user.first_name 'John'
user.last_name 'Sheppard'
user.after_create { |_t| _t.contact.update_attribute :email, Factory.next(:email) }
end
Factory.sequence :email do |n|
"john#{n}[email protected]"
end
WARNING: FactoryGirl::Sequence#next is deprecated.
Use #run instead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你应该能够在这里调用 Factory(:email) - 你将自动获得序列中的下一个
I think you should just be able to call Factory(:email) here - you will get the next in the sequence automatically
从 4.2.0 版本开始
FactoryGirl.generate(:email)
有效As of version 4.2.0
FactoryGirl.generate(:email)
works