是否有一个配置设置可以将所有factory_girl工厂的:default_strategy全局设置为:build?

发布于 2024-10-04 22:16:08 字数 497 浏览 2 评论 0原文

我知道您可以像这样覆盖创建 Factory 对象的默认策略:

Factory.define :person, :default_strategy => :build do
  # stuff
end

Factory.define :person, :default_strategy => :create do
  # stuff
end

# same behavior as the previous factory
Factory.define :person do
  # stuff
end

但我想知道是否可以将设置添加到factory_girl 配置文件中或者在 /environments/test.rb 文件中这样

Factory.define :person do
  # stuff
end

默认情况下会构建一个 Person 对象,而不是默认创建一个对象。

I know you can override the default strategy for creating a Factory object like so:

Factory.define :person, :default_strategy => :build do
  # stuff
end

Factory.define :person, :default_strategy => :create do
  # stuff
end

# same behavior as the previous factory
Factory.define :person do
  # stuff
end

but I'm wondering if I can add a setting to a factory_girl config file or maybe in the /environments/test.rb file so that

Factory.define :person do
  # stuff
end

builds a Person object by default and not create one by default.

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

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

发布评论

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

评论(2

离去的眼神 2024-10-11 22:16:09

来自 来源

module FactoryGirl
  class Factory
    # ...
    def default_strategy #:nodoc:
      @options[:default_strategy] || :create
    end
    # ...
  end
end

默认策略等于作为选项传递给定义,否则设置为 :create。因此,除非您对 FactoryGirl::Factory#default_strategy 进行猴子补丁,否则似乎不可能为所有工厂设置策略。

From the source:

module FactoryGirl
  class Factory
    # ...
    def default_strategy #:nodoc:
      @options[:default_strategy] || :create
    end
    # ...
  end
end

The default strategy equals the strategy that is passed as an option to the definition, and otherwise is set to :create. So it seems that's it not possible to set the strategy for all factories unless you monkey-patch FactoryGirl::Factory#default_strategy.

丶情人眼里出诗心の 2024-10-11 22:16:09

FactoryGirl.use_parent_strategy

关注 https://github.com/thoughtbot/factory_girl /pull/961 了解详细信息。

FactoryGirl.use_parent_strategy

Follow https://github.com/thoughtbot/factory_girl/pull/961 for details.

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