0

私は次のことをしたい:

classes = ["WelcomeMailing", "NoticeMailing", "FeedbackMailing"] #......

FactoryGirl.define do
  classes.each do |tclass|

    cl_attributes = ["body", "subject", "description", "title"]

    # this registers dynamically sequences, which i can use later (this works already!)
    define_sequences(cl_attributes.map{|a| tclass.underscore + "_" + a})

    factory tclass.underscore.to_sym do
      cl_attributes.each do |aattr|
        # here i want to generate the attributes of the factory class dynamically..

        aattr { generate (tclass.underscore + "_" + aattr).to_sym }
        # but it doesnt work
        # => pry(main)> FactoryGirl.create(:custom_mailing_draft)
        # FactoryGirl::AttributeDefinitionError: Attribute already defined: aattr

        # or
        eval(aattr) { generate (tclass.underscore + "_" + aattr).to_sym }            # also not with
        # =>factory_girl/definition_proxy.rb:36:in `add_attribute': Both value and block given (FactoryGirl::AttributeDefinitionError)
      end
    end
  end
end

最後に、ファクトリを動的に作成したいと思います (それらはほぼすべて同じ構造 (継承されたクラス) であるため)。しかし、コードでわかるように、属性の設定は機能しません。

助言がありますか?ありがとう!

4

1 に答える 1

0

自分で解決しました:

  classes.each do |tclass|
    FactoryGirl.define do
      define_sequences(attributes.map{|a| tclass.underscore + "_" + a})

      clstr = "factory :#{tclass.underscore} do;"
      attributes.each do |aattr|
        clstr += "#{aattr} { generate :#{(tclass.underscore + "_" + aattr).to_sym} };"
      end
      clstr += "end"

      eval(clstr)
    end
  end
于 2013-05-08T08:39:17.360 に答える