Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logger_spec.rb « runtime « spec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0fcfa0564ec1a0201cfdd7473c91ca46420bc6e (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec.describe QA::Runtime::Logger do
  it 'returns logger instance' do
    expect(described_class.logger).to be_an_instance_of(::Logger)
  end
end