54c0c0cd17
This instrumentation isn't needed strictly for performance measurements, but just to see which controller actions call this method at all. See <https://gitlab.com/gitlab-org/gitlab-ce/issues/30224#note_32306159> for more details.
17 lines
512 B
Ruby
17 lines
512 B
Ruby
require 'spec_helper'
|
|
require_relative '../../config/initializers/8_metrics'
|
|
|
|
describe 'instrument_classes', lib: true do
|
|
let(:config) { double(:config) }
|
|
|
|
before do
|
|
allow(config).to receive(:instrument_method)
|
|
allow(config).to receive(:instrument_methods)
|
|
allow(config).to receive(:instrument_instance_method)
|
|
allow(config).to receive(:instrument_instance_methods)
|
|
end
|
|
|
|
it 'can autoload and instrument all files' do
|
|
expect { instrument_classes(config) }.not_to raise_error
|
|
end
|
|
end
|