debian-mirror-gitlab/spec/lib/api/entities/projects/topic_spec.rb

20 lines
363 B
Ruby
Raw Normal View History

2021-12-11 22:18:48 +05:30
# 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