summaryrefslogtreecommitdiff
path: root/spec/helpers/projects/security/configuration_helper_spec.rb
blob: c5049bd87f0cb7bfc7f1e5e9456dfc6e5cb836c6 (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://about.gitlab.com/pricing/') }
  end
end