2021-04-17 20:07:23 +05:30
|
|
|
# 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 }
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
it { is_expected.to eq("https://#{ApplicationHelper.promo_host}/pricing/") }
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
end
|