]> git.openstreetmap.org Git - rails.git/blob - test/factories/old_way_tags.rb
Just pass the object, rather than the id, to _path methods where possible
[rails.git] / test / factories / old_way_tags.rb
1 FactoryBot.define do
2   factory :old_way_tag do
3     sequence(:k) { |n| "Key #{n}" }
4     sequence(:v) { |n| "Value #{n}" }
5
6     old_way
7   end
8 end