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

set_active_support_hash_digest_class_spec.rb « initializers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 256e8a1f2181f3db9286afc30587141adc6e87aa (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'setting ActiveSupport::Digest.hash_digest_class' do
  it 'sets overrides config.active_support.hash_digest_class' do
    expect(ActiveSupport::Digest.hash_digest_class).to eq(Gitlab::HashDigest::Facade)
  end
end