mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
19 lines
507 B
Ruby
19 lines
507 B
Ruby
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
|