2019-09-30 05:06:31 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-12 05:52:48 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe ProjectMirrorEntity do
|
2018-11-12 05:52:48 -05:00
|
|
|
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
|