TopicsTest: Small addition.
This commit is contained in:
parent
329aa19c9f
commit
cb3cd3a761
|
@ -104,6 +104,13 @@ test "non-local action produces public:remote topic", %{activity: activity} do
|
||||||
|
|
||||||
assert Enum.member?(topics, "public:remote:lain.com")
|
assert Enum.member?(topics, "public:remote:lain.com")
|
||||||
end
|
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
|
end
|
||||||
|
|
||||||
describe "public visibility create events with attachments" do
|
describe "public visibility create events with attachments" do
|
||||||
|
|
Loading…
Reference in New Issue