summaryrefslogtreecommitdiff
path: root/spec/serializers/group_group_link_entity_spec.rb
blob: 8384563e3e684ad3aaf2fdfa5527944e29ffe24a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GroupGroupLinkEntity do
  include_context 'group_group_link'

  subject(:json) { described_class.new(group_group_link).to_json }

  it 'matches json schema' do
    expect(json).to match_schema('entities/group_group_link')
  end
end