summaryrefslogtreecommitdiff
path: root/spec/serializers/project_mirror_entity_spec.rb
blob: 7ed530ed9e89c6cdbe1023f21967af1b61305517 (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 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