diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-20 17:09:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-20 17:09:40 +0200 |
commit | 812fe90ecaef58f1dbe16c3fdfea79e14e7bbc9d (patch) | |
tree | a5d79dec5503d145096cd1bcf20345bb4310fe9c /spec/fabricators | |
parent | 6c1122a1d99cd58db923148a65b8b1a3dc7abe3d (diff) |
Ensure unique identifiers in fabricated objects in tests (#3173)
Diffstat (limited to 'spec/fabricators')
-rw-r--r-- | spec/fabricators/account_domain_block_fabricator.rb | 4 | ||||
-rw-r--r-- | spec/fabricators/account_fabricator.rb | 2 | ||||
-rw-r--r-- | spec/fabricators/preview_card_fabricator.rb | 5 | ||||
-rw-r--r-- | spec/fabricators/tag_fabricator.rb | 2 | ||||
-rw-r--r-- | spec/fabricators/user_fabricator.rb | 2 |
5 files changed, 7 insertions, 8 deletions
diff --git a/spec/fabricators/account_domain_block_fabricator.rb b/spec/fabricators/account_domain_block_fabricator.rb index fbbddadd5..2ad4b67a9 100644 --- a/spec/fabricators/account_domain_block_fabricator.rb +++ b/spec/fabricators/account_domain_block_fabricator.rb @@ -1,4 +1,4 @@ Fabricator(:account_domain_block) do - account_id 1 - domain "MyString" + account + domain 'example.com' end diff --git a/spec/fabricators/account_fabricator.rb b/spec/fabricators/account_fabricator.rb index 68a758079..446f8ea27 100644 --- a/spec/fabricators/account_fabricator.rb +++ b/spec/fabricators/account_fabricator.rb @@ -1,4 +1,4 @@ Fabricator(:account) do - username { Faker::Internet.user_name(nil, %w(_)) } + username { sequence(:username) { |i| "#{Faker::Internet.user_name(nil, %w(_))}#{i}" } } last_webfingered_at { Time.now.utc } end diff --git a/spec/fabricators/preview_card_fabricator.rb b/spec/fabricators/preview_card_fabricator.rb index 448a94e7e..15b33815c 100644 --- a/spec/fabricators/preview_card_fabricator.rb +++ b/spec/fabricators/preview_card_fabricator.rb @@ -1,5 +1,4 @@ Fabricator(:preview_card) do - status_id 1 - url "MyString" - html "MyText" + status + url 'http://example.com' end diff --git a/spec/fabricators/tag_fabricator.rb b/spec/fabricators/tag_fabricator.rb index d83040990..33d57c928 100644 --- a/spec/fabricators/tag_fabricator.rb +++ b/spec/fabricators/tag_fabricator.rb @@ -1,3 +1,3 @@ Fabricator(:tag) do - name "MyString" + name { sequence(:hashtag) { |i| "#{Faker::Lorem.word}#{i}" } } end 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 |