gitlab-org--gitlab-foss/spec/lib/gitlab/redis/wrapper_spec.rb

12 lines
264 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Redis::Wrapper do
describe '.instrumentation_class' do
it 'raises a NameError' do
expect { described_class.instrumentation_class }.to raise_error(NameError)
end
end
end