debian-mirror-gitlab/spec/lib/gitlab/redis/wrapper_spec.rb
2021-09-04 01:27:46 +05:30

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