Sha256: 1c0822e4a10b2e6438d6a06fb30b8bd2d504b36bb98ba5c631eee1d80b022b0c

Contents?: true

Size: 606 Bytes

Versions: 22

Compression:

Stored size: 606 Bytes

Contents

require 'spec_helper'

describe FactoryGirl::Proxy::AttributesFor do
  let(:result)             { { :name => "John Doe", :gender => "Male", :admin => false } }
  let(:attribute_assigner) { stub("attribute assigner", :hash => result) }

  it_should_behave_like "proxy without association support"

  it "returns the hash from the attribute assigner" do
    subject.result(attribute_assigner, lambda {|item| item }).should == result
  end

  it "does not run the to_create block" do
    expect do
      subject.result(attribute_assigner, lambda {|item| raise "failed" })
    end.to_not raise_error
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
challah-0.6.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.5.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
factory_girl-2.5.2 spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.4.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.4.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.5 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.4 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.3 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.2 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/proxy/attributes_for_spec.rb
factory_girl-2.5.1 spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.3.0 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.2.1 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/proxy/attributes_for_spec.rb
challah-0.2.0 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/proxy/attributes_for_spec.rb
factory_girl-2.5.0 spec/factory_girl/proxy/attributes_for_spec.rb
factory_girl-2.4.2 spec/factory_girl/proxy/attributes_for_spec.rb