23 lines
596 B
Ruby
23 lines
596 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Banzai::Pipeline::EmojiPipeline do
|
|
let(:emoji) { TanukiEmoji.find_by_alpha_code('100') }
|
|
|
|
def parse(text)
|
|
described_class.to_html(text, {})
|
|
end
|
|
|
|
it 'replaces emoji' do
|
|
expected_result = "Hello world #{Gitlab::Emoji.gl_emoji_tag(emoji)}"
|
|
|
|
expect(parse('Hello world :100:')).to eq(expected_result)
|
|
end
|
|
|
|
it 'filters out HTML tags' do
|
|
expected_result = "Hello <b>world</b> #{Gitlab::Emoji.gl_emoji_tag(emoji)}"
|
|
|
|
expect(parse('Hello <b>world</b> :100:')).to eq(expected_result)
|
|
end
|
|
end
|