Sha256: 7a0cf22a6e30ccaef095ce38fcc9ed39cbb3451abcc2f1b656cfd1784295b7cc

Contents?: true

Size: 1012 Bytes

Versions: 25

Compression:

Stored size: 1012 Bytes

Contents

FactoryBot.define do
  factory :promotion_attribute do
    name "Attribute Name"

    # Data Type could be text, integer, date, list_drop_down (Select from a List), list_radio_button (Choose one) & boolean (Checkbox)
    data_type "text"
    mandatory false
    promotion
  end

  factory :text_promotion_attribute, parent: :promotion_attribute do
    data_type "text"
  end

  factory :integer_promotion_attribute, parent: :promotion_attribute do
    data_type "integer"
  end

  factory :date_promotion_attribute, parent: :promotion_attribute do
    data_type "date"
  end

  factory :list_drop_down_promotion_attribute, parent: :promotion_attribute do
    data_type "list_drop_down"
    values ["Value 1", "Value 2", "Value 3"]
  end

  factory :list_radio_button_promotion_attribute, parent: :promotion_attribute do
    data_type "list_radio_button"
    values ["Radio 1", "Radio 2", "Radio 3"]
  end

  factory :boolean_promotion_attribute, parent: :promotion_attribute do
    data_type "boolean"
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
dhatu-0.3.9.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.8.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.7.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.6.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.5.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.4.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.3.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.2.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.1.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.3.0.pre.materialize spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.2.3 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.2.2 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.2.1 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.2.0 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.25 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.24 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.23 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.22 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.21 spec/dummy/spec/factories/promotion_attributes.rb
dhatu-0.1.20 spec/dummy/spec/factories/promotion_attributes.rb