debian-mirror-gitlab/spec/helpers/ci/variables_helper_spec.rb
2023-06-20 00:43:36 +05:30

11 lines
311 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::VariablesHelper, feature_category: :secrets_management do
describe '#ci_variable_maskable_raw_regex' do
it 'converts to a javascript regex' do
expect(helper.ci_variable_maskable_raw_regex).to eq("^\\S{8,}$")
end
end
end