工厂女孩有很多关系(和受保护的属性)

发布于 2024-09-16 19:55:29 字数 643 浏览 5 评论 0原文

我有这种关系:

class Article < ActiveRecord::Base
  has_many :comments
end

class Comment < ActiveRecord::Base
  belongs_to :article
  attr_protected :article_id
end

控制器内的默认场景如下所示:

@article = Article.create(:title => "foobar")
@comment = @article.comments.create(:content => "w00t")

我曾尝试编写这些工厂:

Factory.define :article do |f|
  f.title "Hello, world"
end

Factory.define :comment do |f|
  f.content "Awesome!"
  f.association :article
end

但我的关联语法不正确。由于评论的article_id受保护属性,这有点棘手。所以我认为如果我在文章工厂内声明关联应该会更好,但我不知道如何处理。

感谢您的任何帮助。

I have this kind of relation:

class Article < ActiveRecord::Base
  has_many :comments
end

class Comment < ActiveRecord::Base
  belongs_to :article
  attr_protected :article_id
end

The default scenario inside controllers looks like:

@article = Article.create(:title => "foobar")
@comment = @article.comments.create(:content => "w00t")

I had tried to write those factories:

Factory.define :article do |f|
  f.title "Hello, world"
end

Factory.define :comment do |f|
  f.content "Awesome!"
  f.association :article
end

But my syntax is not correct about the association. It's a little bit tricky because of the comment's article_id protected attribute. So I think this should be better if I declare the association inside the article factory, but I don't see how to process.

Thanks for any help.

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

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

发布评论

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

评论(1

萌能量女王 2024-09-23 19:55:29

你应该做

Factory.define :comment do |f|
  f.content "Awesome!"
  f.article { |a| a.association(:article) }
end

You should do

Factory.define :comment do |f|
  f.content "Awesome!"
  f.article { |a| a.association(:article) }
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文