diff options
Diffstat (limited to 'tests/activities/models')
-rw-r--r-- | tests/activities/models/test_hashtag.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/activities/models/test_hashtag.py b/tests/activities/models/test_hashtag.py index 32742d6..91af45c 100644 --- a/tests/activities/models/test_hashtag.py +++ b/tests/activities/models/test_hashtag.py @@ -9,11 +9,13 @@ def test_hashtag_from_content(): "with", ] assert Hashtag.hashtags_from_content("#hashtag.") == ["hashtag"] - assert Hashtag.hashtags_from_content("More text\n#one # two ##three #hashtag;") == [ + assert Hashtag.hashtags_from_content("More text\n#one # two ##three #hashtag!") == [ "hashtag", "one", "three", ] + assert Hashtag.hashtags_from_content("my #html loves   entities") == ["html"] + assert Hashtag.hashtags_from_content("<span class='hash'>#</span>tag") == ["tag"] def test_linkify_hashtag(): |