Sha256: a1001d939e0a5d2b58322cb063feaa8d2c516606af808839d2cf87e595d88e06

Contents?: true

Size: 1.54 KB

Versions: 42

Compression:

Stored size: 1.54 KB

Contents

require 'spec_helper'

describe "a generated attributes hash where order matters" do
  include FactoryGirl::Syntax::Methods

  before do
    define_model('ParentModel', :static           => :integer,
                                :evaluates_first  => :integer,
                                :evaluates_second => :integer,
                                :evaluates_third  => :integer)

    FactoryGirl.define do
      factory :parent_model do
        evaluates_first  { static }
        evaluates_second { evaluates_first }
        evaluates_third  { evaluates_second }

        factory :child_model do
          static 1
        end
      end

      factory :without_parent, :class => ParentModel do
        evaluates_first   { static }
        evaluates_second  { evaluates_first }
        evaluates_third   { evaluates_second }
        static 1
      end
    end
  end

  context "factory with a parent" do
    subject { FactoryGirl.build(:child_model) }

    it "assigns attributes in the order they're defined with preference to static attributes" do
      subject[:evaluates_first].should  == 1
      subject[:evaluates_second].should == 1
      subject[:evaluates_third].should  == 1
    end
  end

  context "factory without a parent" do
    subject { FactoryGirl.build(:without_parent) }

    it "assigns attributes in the order they're defined with preference to static attributes without a parent class" do
      subject[:evaluates_first].should  == 1
      subject[:evaluates_second].should == 1
      subject[:evaluates_third].should  == 1
    end
  end
end

Version data entries

42 entries across 37 versions & 3 rubygems

Version Path
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/factory_girl-2.6.4/spec/acceptance/attributes_ordered_spec.rb
challah-0.6.2 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.6.1 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.6.1 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.6.4 spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.6.3 spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.6.2 spec/acceptance/attributes_ordered_spec.rb
challah-0.5.1 vendor/bundle/gems/factory_girl-2.6.1/spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.6.1 spec/acceptance/attributes_ordered_spec.rb
challah-0.5.0 vendor/bundle/gems/factory_girl-2.5.1/spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.6.0 spec/acceptance/attributes_ordered_spec.rb
factory_girl-2.5.2 spec/acceptance/attributes_ordered_spec.rb