aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest
diff options
context:
space:
mode:
Diffstat (limited to '_pytest')
-rw-r--r--_pytest/test_linkifytext.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/_pytest/test_linkifytext.py b/_pytest/test_linkifytext.py
index a086fde..7c67fa6 100644
--- a/_pytest/test_linkifytext.py
+++ b/_pytest/test_linkifytext.py
@@ -49,6 +49,11 @@ def test_linkifytext_at_channel(team):
assert text == '<!channel>: my test message'
+def test_linkifytext_at_everyone(team):
+ text = linkify_text('@everyone: my test message', team)
+
+ assert text == '<!everyone>: my test message'
+
def test_linkifytext_at_group(team):
text = linkify_text('@group: my test message', team)