From 63ab492439ce4711fe6370d63bc6a55a48121448 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 21 Nov 2022 22:17:22 -0700 Subject: Fix mentions at the start of posts --- tests/activities/models/test_post.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests') diff --git a/tests/activities/models/test_post.py b/tests/activities/models/test_post.py index 6d86781..9d5207c 100644 --- a/tests/activities/models/test_post.py +++ b/tests/activities/models/test_post.py @@ -94,6 +94,17 @@ def test_linkify_mentions_local(identity, remote_identity): post.safe_content_local() == '

@test@example.com, welcome!

' ) + # Test a full username (remote) with no

+ post = Post.objects.create( + content="@test@remote.test hello!", + author=identity, + local=True, + ) + post.mentions.add(remote_identity) + assert ( + post.safe_content_local() + == '@test@remote.test hello!' + ) # Test that they don't get touched without a mention post = Post.objects.create( content="

@test@example.com, welcome!

", -- cgit v1.2.3