1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/factory_girl/sequence_spec.rb

96 lines
2.6 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2009-04-11 11:27:23 -04:00
describe FactoryGirl::Sequence do
describe "a basic sequence" do
let(:name) { :test }
subject { FactoryGirl::Sequence.new(name) {|n| "=#{n}" } }
2012-03-09 15:24:40 -05:00
its(:name) { should == name }
its(:names) { should == [name] }
its(:next) { should == "=1" }
2009-04-11 11:27:23 -04:00
describe "when incrementing" do
before { subject.next }
its(:next) { should == "=2" }
2009-04-11 11:27:23 -04:00
end
end
describe "a custom sequence" do
subject { FactoryGirl::Sequence.new(:name, "A") {|n| "=#{n}" } }
its(:next) { should == "=A" }
describe "when incrementing" do
before { subject.next }
its(:next) { should == "=B" }
end
end
describe "a sequence with aliases using default value" do
2012-04-20 23:06:48 -04:00
subject { FactoryGirl::Sequence.new(:test, aliases: [:alias, :other]) { |n| "=#{n}" } }
its(:next) { should == "=1" }
its(:names) { should == [:test, :alias, :other] }
describe "when incrementing" do
before { subject.next }
its(:next) { should == "=2" }
end
end
describe "a sequence with custom value and aliases" do
2012-04-06 14:41:13 -04:00
subject { FactoryGirl::Sequence.new(:test, 3, aliases: [:alias, :other]) { |n| "=#{n}" } }
its(:next) { should == "=3" }
2012-03-29 16:21:55 +02:00
describe "when incrementing" do
before { subject.next }
its(:next) { should == "=4" }
end
end
describe "a basic sequence without a block" do
subject { FactoryGirl::Sequence.new(:name) }
its(:next) { should == 1 }
describe "when incrementing" do
before { subject.next }
its(:next) { should == 2 }
end
end
describe "a custom sequence without a block" do
subject { FactoryGirl::Sequence.new(:name, "A") }
its(:next) { should == "A" }
describe "when incrementing" do
before { subject.next }
its(:next) { should == "B" }
end
end
describe "iterating over items in an enumerator" do
subject { FactoryGirl::Sequence.new(:name, %w[foo bar].to_enum) {|n| "=#{n}" } }
it "navigates to the next items until no items remain" do
subject.next.should == "=foo"
subject.next.should == "=bar"
expect { subject.next }.to raise_error(StopIteration)
end
end
describe "a custom sequence and scope" do
subject { FactoryGirl::Sequence.new(:name, 'A') {|n| "=#{n}#{foo}" } }
let(:scope) { stub('scope', foo: 'attribute') }
it 'increments within the correct scope' do
subject.next(scope).should == '=Aattribute'
end
describe 'when incrementing' do
before { subject.next(scope) }
it 'increments within the correct scope' do
subject.next(scope).should == '=Battribute'
end
end
end
2009-04-11 11:27:23 -04:00
end