FactoryGirl:未定义方法“paypal”;对于“工厂”类

发布于 2024-12-05 01:52:13 字数 459 浏览 1 评论 0原文

愚蠢的问题: 我有一个支付模型工厂

   Factory.define :payment do |f|
     ...
     f.method 'paypal'
     ...
   end

这给了我一个错误:

类“Factory”的未定义方法“paypal”

我认为问题在于 方法Object 中的 a> 方法。

有没有办法在 FactoryGirl 的工厂中使用“方法”作为属性?

Stupid question:
I have a factory for Payment model

   Factory.define :payment do |f|
     ...
     f.method 'paypal'
     ...
   end

This gives me an error:

undefined method `paypal' for class `Factory'

I think the problem is the method method in Ruby's class Object.

Is there any way to use 'method' as attribute in factories with FactoryGirl?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

み零 2024-12-12 01:52:13

我强烈建议您避免使用该属性名称。重命名数据库中的列。在其他几种情况下,您可能会遇到同样的问题。

老实说,我不知道有什么办法可以解决这个问题。您可以使用 after_create 回调,但这绝对不是最终的解决方案。

I strongly encourage you to avoid that attribute name. Rename the column in your database. You are likely going to fall into the same issue in several others cases.

Honestly, I don't know any way to solve this. You can use the after_create callback, but it's definitely not a final solution.

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