]> git.openstreetmap.org Git - rails.git/blob - test/factories/tracepoints.rb
Merge pull request #5932 from tomhughes/frozen-strings
[rails.git] / test / factories / tracepoints.rb
1 # frozen_string_literal: true
2
3 FactoryBot.define do
4   factory :tracepoint do
5     trackid { 1 }
6     latitude { 1 * GeoRecord::SCALE }
7     longitude { 1 * GeoRecord::SCALE }
8     # tile { QuadTile.tile_for_point(1,1) }
9     timestamp { Time.now.utc }
10
11     trace
12   end
13 end