logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 812fe90ecaef58f1dbe16c3fdfea79e14e7bbc9d
parent: 6c1122a1d99cd58db923148a65b8b1a3dc7abe3d
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Sat, 20 May 2017 17:09:40 +0200

Ensure unique identifiers in fabricated objects in tests (#3173)


Diffstat:

Mspec/fabricators/account_domain_block_fabricator.rb4++--
Mspec/fabricators/account_fabricator.rb2+-
Mspec/fabricators/preview_card_fabricator.rb5++---
Mspec/fabricators/tag_fabricator.rb2+-
Mspec/fabricators/user_fabricator.rb2+-
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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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