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/presenters/instance_clusterable_presenter_spec.rb')
-rw-r--r--spec/presenters/instance_clusterable_presenter_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/presenters/instance_clusterable_presenter_spec.rb b/spec/presenters/instance_clusterable_presenter_spec.rb
index 3e871bf7ba5..52379091b4e 100644
--- a/spec/presenters/instance_clusterable_presenter_spec.rb
+++ b/spec/presenters/instance_clusterable_presenter_spec.rb
@@ -9,24 +9,12 @@ RSpec.describe InstanceClusterablePresenter do
let(:cluster) { create(:cluster, :provided_by_gcp, :instance) }
let(:instance) { cluster.instance }
- describe '#create_aws_clusters_path' do
- subject { described_class.new(instance).create_aws_clusters_path }
-
- it { is_expected.to eq(create_aws_admin_clusters_path) }
- end
-
describe '#connect_path' do
subject { described_class.new(instance).connect_path }
it { is_expected.to eq(connect_admin_clusters_path) }
end
- describe '#authorize_aws_role_path' do
- subject { described_class.new(instance).authorize_aws_role_path }
-
- it { is_expected.to eq(authorize_aws_role_admin_clusters_path) }
- end
-
describe '#clear_cluster_cache_path' do
subject { presenter.clear_cluster_cache_path(cluster) }