summaryrefslogtreecommitdiff
path: root/spec/lib/banzai/pipeline/broadcast_message_pipeline_spec.rb
blob: 9f1af821d11cc1a564d4dbc7ffef158a547f12e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Banzai::Pipeline::BroadcastMessagePipeline, feature_category: :team_planning do
  let_it_be(:group) { create(:group) }
  let_it_be(:project) { create(:project, group: group) }

  before do
    stub_commonmark_sourcepos_disabled
  end

  subject { described_class.to_html(exp, project: project) }

  context "allows `a` elements" do
    let(:exp) { "<a>Link</a>" }

    it { is_expected.to eq("<p>#{exp}</p>") }
  end

  context "allows `br` elements" do
    let(:exp) { "Hello<br>World" }

    it { is_expected.to eq("<p>#{exp}</p>") }
  end
end