]> git.openstreetmap.org Git - rails.git/blob - test/factories/old_relation_tags.rb
Add a way_with_nodes factory, and use it in the way_controller tests.
[rails.git] / test / factories / old_relation_tags.rb
1 FactoryGirl.define do
2   factory :old_relation_tag do
3     sequence(:k) { |n| "Key #{n}" }
4     sequence(:v) { |n| "Value #{n}" }
5
6     old_relation
7   end
8 end