require 'spec_helper' describe FactoryGirl::Attribute::Static do let(:name) { :first_name } let(:value) { "John" } subject { FactoryGirl::Attribute::Static.new(name, value, false) } its(:name) { should eq name } it "returns the value when executing the proc" do expect(subject.to_proc.call).to eq value end end describe FactoryGirl::Attribute::Static, "with a string name" do subject { FactoryGirl::Attribute::Static.new("name", nil, false) } its(:name) { should eq :name } end