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

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

require 'spec_helper'

describe Evidences::EvidenceSerializer do
  it 'represents an EvidenceEntity entity' do
    expect(described_class.entity_class).to eq(Evidences::EvidenceEntity)
  end
end