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/support/helpers/metrics_dashboard_url_helpers.rb')
-rw-r--r--spec/support/helpers/metrics_dashboard_url_helpers.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/support/helpers/metrics_dashboard_url_helpers.rb b/spec/support/helpers/metrics_dashboard_url_helpers.rb
deleted file mode 100644
index 58b3d1e4d1d..00000000000
--- a/spec/support/helpers/metrics_dashboard_url_helpers.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-# frozen_string_literal: true
-
-module MetricsDashboardUrlHelpers
- # Using the url_helpers available in the test suite uses
- # the sample host, but the urls generated may need to
- # point to the configured host in the :js trait
- def urls
- ::Gitlab::Routing.url_helpers
- end
-
- def clear_host_from_memoized_variables
- [:metrics_regex, :grafana_regex, :clusters_regex, :alert_regex].each do |method_name|
- Gitlab::Metrics::Dashboard::Url.clear_memoization(method_name)
- end
- end
-
- def stub_gitlab_domain
- allow_any_instance_of(Banzai::Filter::InlineEmbedsFilter)
- .to receive(:gitlab_domain)
- .and_return(urls.root_url.chomp('/'))
-
- allow(Gitlab::Metrics::Dashboard::Url)
- .to receive(:gitlab_domain)
- .and_return(urls.root_url.chomp('/'))
- end
-end