Welcome to mirror list, hosted at ThFree Co, Russian Federation.

topic_spec.rb « projects « entities « api « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdf142dbb7d6614a34bda55a0091ec7b4fd15217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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,
      :description,
      :total_projects_count,
      :avatar_url
    )
  end
end