Sha256: c974970a394ba8593adea4f5ff1151c49892a7f9f2b8943284dd887c9bb95173

Contents?: true

Size: 1.85 KB

Versions: 28

Compression:

Stored size: 1.85 KB

Contents

require "spec_helper"

describe FactoryGirl::EvaluatorClassDefiner do
  let(:simple_attribute)                    { stub("simple attribute",   name: :simple, to_proc: -> { 1 }) }
  let(:relative_attribute)                  { stub("relative attribute", name: :relative, to_proc: -> { simple + 1 }) }
  let(:attribute_that_raises_a_second_time) { stub("attribute that would raise without a cache", name: :raises_without_proper_cache, to_proc: -> { raise "failed" if @run; @run = true; nil }) }

  let(:attributes)    { [simple_attribute, relative_attribute, attribute_that_raises_a_second_time] }
  let(:class_definer) { FactoryGirl::EvaluatorClassDefiner.new(attributes, FactoryGirl::Evaluator) }
  let(:evaluator)     { class_definer.evaluator_class.new(stub("build strategy", add_observer: true)) }

  it "returns an evaluator when accessing the evaluator class" do
    evaluator.should be_a(FactoryGirl::Evaluator)
  end

  it "adds each attribute to the evaluator" do
    evaluator.simple.should == 1
  end

  it "evaluates the block in the context of the evaluator" do
    evaluator.relative.should == 2
  end

  it "only instance_execs the block once even when returning nil" do
    expect {
      2.times { evaluator.raises_without_proper_cache }
    }.to_not raise_error
  end

  it "sets attributes on the evaluator class" do
    class_definer.evaluator_class.attribute_lists.should == [attributes]
  end

  context "with a custom evaluator as a parent class" do
    let(:child_attributes) { [stub("child attribute", name: :simple, to_proc: -> { 1 })] }
    let(:child_definer)    { FactoryGirl::EvaluatorClassDefiner.new(child_attributes, class_definer.evaluator_class) }

    subject { child_definer.evaluator_class }

    it "bases its attribute lists on itself and its parent evaluator" do
      subject.attribute_lists.should == [attributes, child_attributes]
    end
  end
end

Version data entries

28 entries across 20 versions & 4 rubygems

Version Path
challah-1.0.0.beta vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.9.1.beta.3 vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.9.1.beta vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.9.0 vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/factory_girl-4.0.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/factory_girl-3.6.1/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/factory_girl-3.6.1/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/factory_girl-4.0.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.2.0 vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.8.3 vendor/bundle/gems/factory_girl-4.1.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.8.3 vendor/bundle/gems/factory_girl-4.0.0/spec/factory_girl/evaluator_class_definer_spec.rb
factory_girl-3.6.2 spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.8.1 vendor/bundle/gems/factory_girl-4.0.0/spec/factory_girl/evaluator_class_definer_spec.rb
factory_girl-4.1.0 spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.1.0 vendor/bundle/gems/factory_girl-3.6.1/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/factory_girl-3.6.1/spec/factory_girl/evaluator_class_definer_spec.rb
challah-rolls-0.1.0 vendor/bundle/gems/factory_girl-4.0.0/spec/factory_girl/evaluator_class_definer_spec.rb
challah-0.8.0.pre vendor/bundle/gems/factory_girl-3.6.1/spec/factory_girl/evaluator_class_definer_spec.rb