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

uncategorized_menu_spec.rb « sidebars « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45e7c0c87e2227c890d4aa0e58b2900daaaf26a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Sidebars::UncategorizedMenu, feature_category: :navigation do
  subject { described_class.new({}) }

  it 'has title and sprite_icon' do
    expect(subject.title).to eq(_("Uncategorized"))
    expect(subject.sprite_icon).to eq("question")
  end
end