2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2016-07-27 20:03:06 -04:00
|
|
|
factory :user_agent_detail do
|
2019-10-01 20:06:26 -04:00
|
|
|
ip_address { '127.0.0.1' }
|
|
|
|
user_agent { 'AppleWebKit/537.36' }
|
2016-08-09 13:43:47 -04:00
|
|
|
association :subject, factory: :issue
|
2016-07-27 20:03:06 -04:00
|
|
|
end
|
|
|
|
end
|