From 7d919f3897deb322f13428127b1ba91731917f4c Mon Sep 17 00:00:00 2001 From: Nana Amfo Date: Mon, 8 Apr 2019 06:03:35 -0500 Subject: Add @user-groups support (#680) Add @user-groups with tab-completion. @user-groups will be unfurl into format message before sending message via linktext method. --- _pytest/test_unfurl.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to '_pytest/test_unfurl.py') diff --git a/_pytest/test_unfurl.py b/_pytest/test_unfurl.py index 40674b4..6b8e84c 100644 --- a/_pytest/test_unfurl.py +++ b/_pytest/test_unfurl.py @@ -62,6 +62,10 @@ slack = wee_slack 'input': "<@U407ABLLW> I think 3 > 2", 'output': "@alice I think 3 > 2", }, + { + 'input': " This is announcement for the dev team", + 'output': "@dev This is announcement for the dev team" + } )) def test_unfurl_refs(case, realish_eventrouter): slack.EVENTROUTER = realish_eventrouter -- cgit