debian-mirror-gitlab/spec/lib/gitlab/app_logger_spec.rb
2019-10-12 21:52:04 +05:30

14 lines
294 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Gitlab::AppLogger, :request_store do
subject { described_class }
it 'builds a logger once' do
expect(::Logger).to receive(:new).and_call_original
subject.info('hello world')
subject.error('hello again')
end
end