FactoryGirl sequences can be defined with an initial starting value
FactoryGirl.define do
sequence :email, 1000 do |n|
"person#{n}@example.com"
end
end
thus:
> FactoryGirl.generate :email
=> "[email protected]"
> FactoryGirl.generate :email
=> "[email protected]"