debian-mirror-gitlab/spec/lib/gitlab/import/logger_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
220 B
Ruby
Raw Normal View History

2021-10-27 15:23:28 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Import::Logger do
subject { described_class.new('/dev/null') }
2023-07-09 08:55:56 +05:30
it_behaves_like 'a json logger', { 'feature_category' => 'importers' }
2021-10-27 15:23:28 +05:30
end