openstreetmap-website/test/factories/acls.rb
Andy Allan 162f04d789 Convert ACL fixture to a factory, and add some tests
The fixture was unused, so I took the opportunity to put in a couple
of basic model tests.
2016-10-26 09:15:56 +01:00

5 lines
86 B
Ruby

FactoryGirl.define do
factory :acl do
sequence(:k) { |n| "Key #{n}" }
end
end