debian-mirror-gitlab/spec/lib/sidebars/uncategorized_menu_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
318 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# 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