Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_agent_details.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3185ded26ce69c4a0df8b518c6d6a063ae68a8e2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :user_agent_detail do
    ip_address { '127.0.0.1' }
    user_agent { 'AppleWebKit/537.36' }
    association :subject, factory: :issue
  end
end