FactoryGirl:未定义方法“paypal”;对于“工厂”类
愚蠢的问题: 我有一个支付模型工厂
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我强烈建议您避免使用该属性名称。重命名数据库中的列。在其他几种情况下,您可能会遇到同样的问题。
老实说,我不知道有什么办法可以解决这个问题。您可以使用
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.