blob: 0d83e25e27bf49e2251b9e36bf185859d0dc46a4 (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ProjectMirrorSerializer do
it 'represents ProjectMirror entities' do
expect(described_class.entity_class).to eq(ProjectMirrorEntity)
end
end
|