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

configure_sast_iac_spec.rb « ci_configuration « security « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f16d504a4ae50286a52bf177013ac1eb2cf61afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Security::CiConfiguration::ConfigureSastIac do
  include GraphqlHelpers

  let(:service) { ::Security::CiConfiguration::SastIacCreateService }

  subject { resolve(described_class, args: { project_path: project.full_path }, ctx: { current_user: user }) }

  include_examples 'graphql mutations security ci configuration'
end