trabajo-afectivo/spec/factories/tag.rb

8 lines
209 B
Ruby
Raw Normal View History

FactoryBot.define do
2017-05-05 09:16:47 +00:00
factory :tag do
tag_object_id { Tag::Object.lookup_by_name_and_create('Ticket').id }
tag_item_id { Tag::Item.lookup_by_name_and_create('blub').id }
created_by_id 1
end
end