mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-10 01:31:45 +00:00
10 lines
248 B
Ruby
10 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Integrations::ProjectSerializer do
|
|
it 'represents Integrations::ProjectEntity entities' do
|
|
expect(described_class.entity_class).to eq(Integrations::ProjectEntity)
|
|
end
|
|
end
|