# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :location do
    title "MyString"
    address "MyString"
    latitude 1.5
    longitude 1.5
  end
end