summaryrefslogtreecommitdiff
path: root/spec/lib/api/entities/projects/topic_spec.rb
blob: 1ea0e724fed6eb72a9455bebaa082b5377e5df7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::Projects::Topic do
  let(:topic) { create(:topic) }

  subject { described_class.new(topic).as_json }

  it 'exposes correct attributes' do
    expect(subject).to include(
      :id,
      :name,
      :title,
      :description,
      :total_projects_count,
      :avatar_url
    )
  end
end