summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/redis/wrapper_spec.rb
blob: dd1f0d8b41466acedf900d79bcad11ae0740431a (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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