# frozen_string_literal: true require 'spec_helper' RSpec.describe SlackMarkdownSanitizer, feature_category: :integrations do describe '.sanitize' do using RSpec::Parameterized::TableSyntax where(:input, :output) do nil | nil '' | '' '[label](url)' | 'label(url)' '' | 'urllabel' 'label' | 'a href="url"label/a' end with_them do it 'returns the expected output' do expect(described_class.sanitize(input)).to eq(output) end end end describe '.sanitize_slack_link' do using RSpec::Parameterized::TableSyntax where(:input, :output) do '' | '' '[label](url)' | '[label](url)' '' | '<url|label>' 'label' | 'label' end with_them do it 'returns the expected output' do expect(described_class.sanitize_slack_link(input)).to eq(output) end end end end