summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/nav/top_nav_menu_item_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/nav/top_nav_menu_item_spec.rb')
-rw-r--r--spec/lib/gitlab/nav/top_nav_menu_item_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/lib/gitlab/nav/top_nav_menu_item_spec.rb b/spec/lib/gitlab/nav/top_nav_menu_item_spec.rb
new file mode 100644
index 00000000000..26f9ea3a637
--- /dev/null
+++ b/spec/lib/gitlab/nav/top_nav_menu_item_spec.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe ::Gitlab::Nav::TopNavMenuItem do
+ describe '.build' do
+ it 'builds a hash from the given args' do
+ item = {
+ id: 'id',
+ title: 'Title',
+ active: true,
+ icon: 'icon',
+ href: 'href',
+ method: 'method',
+ view: 'view',
+ css_class: 'css_class',
+ data: {}
+ }
+
+ expect(described_class.build(**item)).to eq(item)
+ end
+ end
+end