gitlab-org--gitlab-foss/spec/factories/user_agent_details.rb

10 lines
207 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :user_agent_detail do
ip_address { '127.0.0.1' }
user_agent { 'AppleWebKit/537.36' }
2016-08-09 17:43:47 +00:00
association :subject, factory: :issue
end
end