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

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

require 'spec_helper'

RSpec.describe Gitlab::Import::Logger do
  subject { described_class.new('/dev/null') }

  it_behaves_like 'a json logger', { 'feature_category' => 'importers' }
end