summaryrefslogtreecommitdiff
path: root/spec/serializers/project_mirror_entity_spec.rb
blob: 0d64199ecf6d5b5bd2a77c4cebbefb07f407aa59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'spec_helper'

describe ProjectMirrorEntity do
  let(:project) { create(:project, :repository, :remote_mirror) }
  let(:entity) { described_class.new(project) }

  subject { entity.as_json }

  it 'exposes project-specific elements' do
    is_expected.to include(:id, :remote_mirrors_attributes)
  end
end