blob: ff539c6f5c4aea71accbba9726d53bad0b0706cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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 }
end
end
|