mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe NamespaceSerializer do
|
|
it 'represents NamespaceBasicEntity entities' do
|
|
expect(described_class.entity_class).to eq(NamespaceBasicEntity)
|
|
end
|
|
end
|