debian-mirror-gitlab/spec/factories/user_agent_details.rb

10 lines
207 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2016-09-13 17:45:13 +05:30
factory :user_agent_detail do
2019-12-21 20:55:43 +05:30
ip_address { '127.0.0.1' }
user_agent { 'AppleWebKit/537.36' }
2016-09-13 17:45:13 +05:30
association :subject, factory: :issue
end
end