5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-28 00:36:07 +00:00
panel/test/factories/rol.rb
2019-07-11 16:00:53 -03:00

15 lines
209 B
Ruby

# 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