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

configure_sast_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: 7c3b552480f32c2411d2652c73bc4c684b7337cb (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::ConfigureSast do
  include GraphqlHelpers

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

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

  include_examples 'graphql mutations security ci configuration'
end