使用 Factory Girl 为 Thread 和 Thread Participations 创建工厂

发布于 2024-10-23 12:21:08 字数 283 浏览 1 评论 0原文

有人可以提供一个示例或指出我可以在哪里学习如何进行 Factory Girl 嵌套模型关联吗?

一个线程必须至少有一个 ThreadParticipation

现在我的线程位于factories.rb 中,如下所示:

Factory.define :thread do |thread|
  thread.title             "mythread"
end

然后如何创建一个 ThreadParticipation?

谢谢

can someone provide an example or point me to where I can learn how to do Factory Girl nested model associations?

A Thread has to have at least one ThreadParticipation

Right now I have my thread in factories.rb as follows:

Factory.define :thread do |thread|
  thread.title             "mythread"
end

How do I then create a ThreadParticipation?

Thanks

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

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

发布评论

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

评论(1

做个ˇ局外人 2024-10-30 12:21:08

Factory_girl 源中的入门文件包含有关关联的信息。

可以生成关联实例
通过使用关联方法,当
定义惰性属性:

工厂:post do
  # ...
  作者 
结尾

您还可以指定不同的
工厂或覆盖属性:

工厂:post do
  # ...
  协会:作者,:工厂=> :用户, :姓氏 => “书面”
结尾

因此,在您的实例中,我想像这样:

Factory.define :thread do |thread|
  thread.title "mythread"
  thread.thread_participation
end

Factory.define :thread_participation do |ppn|
  ppn.attribute "value"
end

如果您使用集合而不是 has_one/belongs_to 关联,那么您可以这样创建一个数组:

Factory.define :thread do |thread|
  thread.title "mythread"
  thread.thread_participations { |a| [a.association(:thread_participation)] }
end

The Getting Started file in the factory_girl source has info on associations.

Associated instances can be generated
by using the association method when
defining a lazy attribute:

factory :post do
  # ...
  author 
end

You can also specify a different
factory or override attributes:

factory :post do
  # ...
  association :author, :factory => :user, :last_name => 'Writely'
end

So, in your instance, I would imagine something like this would do:

Factory.define :thread do |thread|
  thread.title "mythread"
  thread.thread_participation
end

Factory.define :thread_participation do |ppn|
  ppn.attribute "value"
end

If you're using a collection instead of a has_one/belongs_to association, you can create an array as such:

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