summaryrefslogtreecommitdiff
path: root/spec/initializers/set_active_support_hash_digest_class_spec.rb
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