Fix uniqueness issues with Faker
This commit is contained in:
parent
b8a526c19f
commit
a853facea2
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
FactoryGirl.define do
|
||||
factory :subcreddit do
|
||||
owner { create(:user) }
|
||||
name { Faker::Team.name.first(21) } # 21 is the max length...brittle
|
||||
sequence(:name) { |n| Faker::Team.name.first(18) + "#{n}" }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue