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/lib/factory_girl/sequence.rb

28 lines
556 B
Ruby
Raw Normal View History

module FactoryGirl
2008-06-01 13:46:50 -04:00
# Sequences are defined using sequence within a FactoryGirl.define block.
# Sequence values are generated using next.
2008-06-01 13:46:50 -04:00
class Sequence
2012-04-06 14:41:13 -04:00
attr_reader :name
2012-04-06 14:41:13 -04:00
def initialize(name, *args, &proc) #:nodoc:
@name = name
@proc = proc
options = args.extract_options!
@value = args.first || 1
@aliases = options[:aliases] || []
2008-06-01 13:46:50 -04:00
end
def next
@proc ? @proc.call(@value) : @value
ensure
@value = @value.next
2008-06-01 13:46:50 -04:00
end
2012-04-06 14:41:13 -04:00
def names
[@name] + @aliases
end
2008-06-01 13:46:50 -04:00
end
end