diff options
author | calve <calvinh34@gmail.com> | 2015-10-28 11:57:26 +0100 |
---|---|---|
committer | calve <calvinh34@gmail.com> | 2016-01-04 11:11:19 +0100 |
commit | 0f4ec71a6cf642e149a11e3cfcf97de5d55098f1 (patch) | |
tree | a44bb3d52dfb28f178a6220cf510dbd1b585a7e8 /_pytest/test_unfurl.py | |
parent | 2592aaf3322ba8af93e36a52602d75ea55e6ce79 (diff) | |
download | wee-slack-0f4ec71a6cf642e149a11e3cfcf97de5d55098f1.tar.gz |
Test string with multiple unfurl
Diffstat (limited to '_pytest/test_unfurl.py')
-rw-r--r-- | _pytest/test_unfurl.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/_pytest/test_unfurl.py b/_pytest/test_unfurl.py index c79c0f3..2b80eda 100644 --- a/_pytest/test_unfurl.py +++ b/_pytest/test_unfurl.py @@ -24,6 +24,9 @@ unfurl_map = [ { "input": "url: <https://example.com|example with spaces> suffix", "output": "url: https://example.com (example with spaces) suffix", }, + { "input": "<@U2147483697|@othernick> multiple unfurl <https://example.com|example with spaces>", + "output": "@othernick multiple unfurl https://example.com (example with spaces)", + }, ] |