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

Version Path
solidus_frontend-2.0.3 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.4.2 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.2 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-2.0.2 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.4.1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-2.0.1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-2.0.0 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.4.0 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-2.0.0.rc1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.4.0.rc1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-2.0.0.beta1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.4.0.beta1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.0 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.0.rc2 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.0.rc1 spec/support/shared_contexts/product_prototypes.rb
solidus_frontend-1.3.0.beta1 spec/support/shared_contexts/product_prototypes.rb