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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb')
-rw-r--r--spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb b/spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb
index 818a7d303bd..668768189df 100644
--- a/spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb
+++ b/spec/graphql/mutations/security/ci_configuration/base_security_analyzer_spec.rb
@@ -7,8 +7,10 @@ RSpec.describe Mutations::Security::CiConfiguration::BaseSecurityAnalyzer do
it 'raises a NotImplementedError error if the resolve method is called on the base class' do
user = create(:user)
+ mutation = described_class.new(context: { current_user: user }, object: nil, field: nil)
project = create(:project, :public, :repository)
project.add_developer(user)
- expect { resolve(described_class, args: { project_path: project.full_path }, ctx: { current_user: user }) }.to raise_error(NotImplementedError)
+
+ expect { mutation.resolve(project_path: project.full_path ) }.to raise_error(NotImplementedError)
end
end