Sha256: de39394fd559a0a9e635fd600f26868149ed0c4c52dabda77dc68e360cd73327
Contents?: true
Size: 503 Bytes
Versions: 236
Compression:
Stored size: 503 Bytes
Contents
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 == name } it "returns the value when executing the proc" do subject.to_proc.call.should == value end end describe FactoryGirl::Attribute::Static, "with a string name" do subject { FactoryGirl::Attribute::Static.new("name", nil, false) } its(:name) { should == :name } end
Version data entries
236 entries across 118 versions & 8 rubygems