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

configuration_helper_spec.rb « security « projects « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c30ba878970e639efad6324315d6dab960bf6cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Security::ConfigurationHelper do
  let(:current_user) { create(:user) }

  describe 'security_upgrade_path' do
    subject { security_upgrade_path }

    it { is_expected.to eq("https://#{ApplicationHelper.promo_host}/pricing/") }
  end
end