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

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

FactoryBot.define do
  factory :vscode_setting, class: 'VsCode::Settings::VsCodeSetting' do
    user

    setting_type { 'settings' }
    content { '{}' }
    uuid { SecureRandom.uuid }
    version { 1 }
  end
end