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: 7183a8e114070156a73a6625281c7b3c0b8fcbcc (plain)
1
2
3
4
5
6
7
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