Sha256: 5bdd008b0476fb4da8dba9cb0bb47cf428ba95c66bc13ded5231cbbed839c410
Contents?: true
Size: 1.8 KB
Versions: 8
Compression:
Stored size: 1.8 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe Slack::Messages::Formatting do subject(:formatting) do described_class end context '#unescape' do it 'plain text' do expect(formatting.unescape('plain text')).to eq 'plain text' end it 'decodes an HTML-encoded message' do expect(formatting.unescape('Hello & <world>')).to eq 'Hello & <world>' end it 'unescapes a user reference' do expect(formatting.unescape('Hey <@U024BE7LH|bob>, did you see my file?')).to( eq('Hey @bob, did you see my file?') ) end it 'unescapes a user reference without a name' do expect(formatting.unescape('<@U02BEFY4U> ^^^')).to eq '@U02BEFY4U ^^^' end it 'unescapes a URL without text' do expect(formatting.unescape('This message contains a URL <http://foo.com/>')).to( eq('This message contains a URL http://foo.com/') ) end it 'unescapes a URL with text' do expect(formatting.unescape('So does this one: <http://www.foo.com|www.foo.com>')).to( eq('So does this one: www.foo.com') ) end it 'removes mailto' do expect(formatting.unescape('<mailto:bob@example.com|Bob>')).to eq 'Bob' end it 'unlinkifies references' do expect( formatting.unescape('Hello <@U123|bob>, say hi to <!everyone> in <#C1234|general>') ).to( eq('Hello @bob, say hi to @everyone in #general') ) end it 'can handle a lone >' do expect(formatting.unescape('Hello <@U123|bob> > file.txt')).to eq 'Hello @bob > file.txt' end it 'unescapes a double smart quote' do expect(formatting.unescape('“hello”')).to eq '"hello"' end it 'unescapes a single smart quote' do expect(formatting.unescape('‘hello’')).to eq "'hello'" end end end
Version data entries
8 entries across 8 versions & 1 rubygems