Transforms native skin toned emojis to valid names

This commit is contained in:
Joffrey JAFFEUX
2017-06-14 15:35:37 +02:00
parent baa332a83e
commit ab6086bce9
2 changed files with 15 additions and 2 deletions

View File

@ -453,6 +453,10 @@ HTML
SiteSetting.enable_emoji = false
expect(PrettyText.cook("💣")).not_to match(/\:bomb\:/)
end
it "replaces skin toned emoji" do
expect(PrettyText.cook("hello 👱🏿‍♀️")).to eq("<p>hello <img src=\"/images/emoji/emoji_one/blonde_woman/6.png?v=5\" title=\":blonde_woman:t6:\" class=\"emoji\" alt=\":blonde_woman:t6:\"></p>")
end
end
describe "tag and category links" do