Sha256: f613f480129afe166faccee926b38815ecfe5eca5085e7acd6ea8ddea738879e
Contents?: true
Size: 800 Bytes
Versions: 17
Compression:
Stored size: 800 Bytes
Contents
shared_context "product prototype" do def build_option_type_with_values(name, values) ot = FactoryGirl.create(:option_type, name: name) values.each do |val| ot.option_values.create(name: val.downcase, presentation: val) end ot end let(:product_attributes) do # FactoryGirl.attributes_for is un-deprecated! # https://github.com/thoughtbot/factory_girl/issues/274#issuecomment-3592054 FactoryGirl.attributes_for(:base_product) end let(:prototype) do size = build_option_type_with_values("size", %w(Small Medium Large)) FactoryGirl.create(:prototype, name: "Size", option_types: [size]) end let(:option_values_hash) do hash = {} prototype.option_types.each do |i| hash[i.id.to_s] = i.option_value_ids end hash end end
Version data entries
17 entries across 17 versions & 1 rubygems