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: 9763cc0cf15d37d6b493b836c88b946cfd463a1a (plain)
1
2
3
4
5
6
7
FactoryGirl.define do
  factory :user_agent_detail do
    ip_address '127.0.0.1'
    user_agent 'AppleWebKit/537.36'
    association :subject, factory: :issue
  end
end