You need to pass a block if you want the values re-evaluated for each instance created.
Instead of
email Faker::Internet.email
try…
email { Faker::Internet.email }
You need to pass a block if you want the values re-evaluated for each instance created.
Instead of
email Faker::Internet.email
try…
email { Faker::Internet.email }