blob: 010a48b6b131568b4c47a0331fc0715085f7ae68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from wee_slack import linkify_text
#def test_linkifytext():
# linkify_text('@ryan')
# assert False
def test_linkifytext_does_partial_html_entity_encoding(mock_weechat, realish_eventrouter):
team = realish_eventrouter.teams.values()[0]
channel = team.channels.values()[0]
text = linkify_text('& < > \' "', team, channel)
assert text == '& < > \' "'
|