mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
10 lines
292 B
Ruby
10 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::GithubImport::Logger, feature_category: :importers do
|
|
subject(:logger) { described_class.new('/dev/null') }
|
|
|
|
it_behaves_like 'a json logger', { 'feature_category' => 'importers', 'import_type' => 'github' }
|
|
end
|