fix uniquess spec problems
This commit is contained in:
parent
06d39f52ca
commit
9a12ea9efc
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ require 'factory_girl'
|
||||||
FactoryGirl.define do
|
FactoryGirl.define do
|
||||||
|
|
||||||
factory :article do
|
factory :article do
|
||||||
name { Faker::Lorem.words(rand(2..5)).join(' ') }
|
sequence(:name) { |n| Faker::Lorem.words(rand(2..4)).join(' ') + " ##{n}" }
|
||||||
unit { Faker::Unit.unit }
|
unit { Faker::Unit.unit }
|
||||||
price { rand(2600) / 100 }
|
price { rand(2600) / 100 }
|
||||||
tax { [6, 21].sample }
|
tax { [6, 21].sample }
|
||||||
|
@ -14,7 +14,7 @@ FactoryGirl.define do
|
||||||
end
|
end
|
||||||
|
|
||||||
factory :article_category do
|
factory :article_category do
|
||||||
name { Faker::Lorem.characters(rand(2..20)) }
|
sequence(:name) { |n| Faker::Lorem.characters(rand(2..12)) + " ##{n}" }
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue