FactoryGirl 警告 Sequence#next 已弃用

发布于 2024-11-30 00:29:00 字数 592 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一刻暧昧 2024-12-07 00:29:00

我认为你应该能够在这里调用 Factory(:email) - 你将自动获得序列中的下一个

I think you should just be able to call Factory(:email) here - you will get the next in the sequence automatically

德意的啸 2024-12-07 00:29:00

4.2.0 版本开始 FactoryGirl.generate(:email) 有效

As of version 4.2.0 FactoryGirl.generate(:email) works

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文