summaryrefslogtreecommitdiff
path: root/spec/helpers/projects/security/configuration_helper_spec.rb
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