diff options
author | lain <lain@soykaf.club> | 2020-11-04 15:24:10 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-11-04 15:24:10 +0100 |
commit | cb3cd3a761d96a08b1b55f5b277795822aa7e1d7 (patch) | |
tree | e3837aa8341cbf99a7857b1dad33459a40a530cb | |
parent | 329aa19c9f1175f915441c84689860155949bb08 (diff) | |
download | pleroma-cb3cd3a761d96a08b1b55f5b277795822aa7e1d7.tar.gz |
TopicsTest: Small addition.
-rw-r--r-- | test/pleroma/activity/ir/topics_test.exs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/pleroma/activity/ir/topics_test.exs b/test/pleroma/activity/ir/topics_test.exs index 2e5655334..5e5c2f8da 100644 --- a/test/pleroma/activity/ir/topics_test.exs +++ b/test/pleroma/activity/ir/topics_test.exs @@ -104,6 +104,13 @@ defmodule Pleroma.Activity.Ir.TopicsTest do assert Enum.member?(topics, "public:remote:lain.com") end + + test "local action doesn't produce public:remote topic", %{activity: activity} do + activity = %{activity | local: true, actor: "https://lain.com/users/lain"} + topics = Topics.get_activity_topics(activity) + + refute Enum.member?(topics, "public:remote:lain.com") + end end describe "public visibility create events with attachments" do |