# frozen_string_literal: true require 'spec_helper' RSpec.describe ExternalLinkHelper do include IconsHelper it 'returns external link with icon' do expect(external_link('https://gitlab.com', 'https://gitlab.com').to_s) .to eq('https://gitlab.com ') end it 'allows options when creating external link with icon' do expect(external_link('https://gitlab.com', 'https://gitlab.com', { "data-foo": "bar", class: "externalLink" }).to_s) .to eq('https://gitlab.com ') end end