about summary refs log tree commit diff
path: root/spec/fabricators/user_fabricator.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-05-20 17:09:40 +0200
committerGitHub <noreply@github.com>2017-05-20 17:09:40 +0200
commit812fe90ecaef58f1dbe16c3fdfea79e14e7bbc9d (patch)
treea5d79dec5503d145096cd1bcf20345bb4310fe9c /spec/fabricators/user_fabricator.rb
parent6c1122a1d99cd58db923148a65b8b1a3dc7abe3d (diff)
Ensure unique identifiers in fabricated objects in tests (#3173)
Diffstat (limited to 'spec/fabricators/user_fabricator.rb')
-rw-r--r--spec/fabricators/user_fabricator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/fabricators/user_fabricator.rb b/spec/fabricators/user_fabricator.rb
index 16b3b1f6f..cf51fe81d 100644
--- a/spec/fabricators/user_fabricator.rb
+++ b/spec/fabricators/user_fabricator.rb
@@ -1,6 +1,6 @@
 Fabricator(:user) do
   account
-  email        { Faker::Internet.email }
+  email        { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
   password     "123456789"
   confirmed_at { Time.now }
 end