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

require 'spec_helper'

RSpec.describe ProjectMirrorEntity, feature_category: :source_code_management do
  let(:project) { build(: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