summaryrefslogtreecommitdiff
path: root/spec/serializers/namespace_basic_entity_spec.rb
blob: f8b71ceb9f31ef2326bd5aa08ba7e74cb6d1d00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'

describe NamespaceBasicEntity do
  set(:group) { create(:group) }
  let(:entity) do
    described_class.represent(group)
  end

  describe '#as_json' do
    subject { entity.as_json }

    it 'includes required fields' do
      expect(subject).to include :id, :full_path
    end
  end
end