Fix FactoryBot warnings

This commit is contained in:
gregoirenovel 2018-09-04 16:46:48 +02:00
parent 12014fb553
commit f66d8451b1
27 changed files with 149 additions and 145 deletions

View file

@ -1,8 +1,8 @@
FactoryBot.define do
factory :individual do
gender 'M.'
nom 'Julien'
prenom 'Xavier'
birthdate Date.new(1991, 11, 01)
gender { 'M.' }
nom { 'Julien' }
prenom { 'Xavier' }
birthdate { Date.new(1991, 11, 01) }
end
end