The fixture was unused, so I took the opportunity to put in a couple of basic model tests.
5 lines
86 B
Ruby
5 lines
86 B
Ruby
FactoryGirl.define do
|
|
factory :acl do
|
|
sequence(:k) { |n| "Key #{n}" }
|
|
end
|
|
end
|