gitlab-org--gitlab-foss/spec/serializers/project_mirror_entity_spec.rb

15 lines
351 B
Ruby

# 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