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

14 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