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

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

10 lines
262 B
Ruby
Raw Normal View History

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