diff --git a/spec/helpers/navigation_helper_spec.rb b/spec/helpers/navigation_helper_spec.rb index e5a9a40c00..773b8cb9f4 100644 --- a/spec/helpers/navigation_helper_spec.rb +++ b/spec/helpers/navigation_helper_spec.rb @@ -34,6 +34,15 @@ module Spree expect(helper.klass_for('Inventory')).to eq(VariantOverride) end end + + describe "tab" do + it "includes translated value" do + # todo: mock translation? + expect(helper.tab(:oidc_settings)).to include "OIDC Settings" + end + + it "transforms untranslated value" + end end end end