debian-mirror-gitlab/spec/factories/authentication_event.rb
2021-12-11 22:18:48 +05:30

20 lines
331 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :authentication_event do
user
provider { :standard }
user_name { 'Jane Doe' }
ip_address { '127.0.0.1' }
result { :failed }
trait :successful do
result { :success }
end
trait :failed do
result { :failed }
end
end
end