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

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

require 'spec_helper'

RSpec.describe ForkNamespaceSerializer do
  it 'represents ForkNamespaceEntity entities' do
    expect(described_class.entity_class).to eq(ForkNamespaceEntity)
  end
end