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/models/clusters/agents/implicit_authorization_spec.rb')
-rw-r--r--spec/models/clusters/agents/implicit_authorization_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/models/clusters/agents/implicit_authorization_spec.rb b/spec/models/clusters/agents/implicit_authorization_spec.rb
deleted file mode 100644
index 1f4c5b1ac9e..00000000000
--- a/spec/models/clusters/agents/implicit_authorization_spec.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Clusters::Agents::ImplicitAuthorization do
- let_it_be(:agent) { create(:cluster_agent) }
-
- subject { described_class.new(agent: agent) }
-
- it { expect(subject.agent).to eq(agent) }
- it { expect(subject.agent_id).to eq(agent.id) }
- it { expect(subject.config_project).to eq(agent.project) }
- it { expect(subject.config).to eq({}) }
-end