aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/chouette_stop_points.rb
blob: 97baae2fd50131e13a5aed7c5ec34a2cd13bc955 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do

  factory :stop_point, :class => Chouette::StopPoint do
    sequence(:objectid) { |n| "test:StopPoint:#{n}:loc" }
    association :stop_area, :factory => :stop_area, area_type: "zdep"
  end

end