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

18 lines
182 B
Ruby
Raw Normal View History

2008-06-01 13:46:50 -04:00
class Factory
class Sequence
def initialize (&proc)
@proc = proc
@value = 0
end
def next
@value += 1
@proc.call(@value)
end
end
end