2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe ProjectMirrorEntity do
|
2019-02-15 15:39:39 +05:30
|
|
|
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
|