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

dependency_scanning_create_service_spec.rb « ci_configuration « security « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac2249642a8ff206aa997355538ace315e69fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Security::CiConfiguration::DependencyScanningCreateService, :snowplow,
               feature_category: :software_composition_analysis do
  subject(:result) { described_class.new(project, user).execute }

  let(:branch_name) { 'set-dependency-scanning-config-1' }

  let(:snowplow_event) do
    {
      category: 'Security::CiConfiguration::DependencyScanningCreateService',
      action: 'create',
      label: ''
    }
  end

  include_examples 'services security ci configuration create service', true
end