5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 10:16:08 +00:00
panel/test/factories/rol.rb

15 lines
209 B
Ruby
Raw Normal View History

2019-07-11 19:00:28 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :rol do
usuarie
site
rol { 'usuarie' }
temporal { false }
factory :rol_invitade do
rol { 'invitade' }
end
end
end