fga-eps-mds/2018.2-IndicaAi

View on GitHub
indicaAi/spec/factories/local.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :local do
    # generates locations from the tv serie 'Friends' :D
    name { Faker::Friends.location }
    # generates quotations from 'Friends'
    description { Faker::Friends.quote }
    latitude { Faker::Number.decimal(2, 8) }
    longitude { Faker::Number.decimal(2, 8) }
    address { Faker::Address.street_address }
    telephone { Faker::PhoneNumber.cell_phone }
  end
end