Merge branch 'remove-unused-aliases' into 'develop'
[akkoma] / test / pleroma / web / common_api_test.exs
index 64476a099e8b53920d098472baf9ec3ee524fc41..c5b90ad84297b7d569eac29dd92069a6f9125328 100644 (file)
@@ -95,6 +95,20 @@ defmodule Pleroma.Web.CommonAPITest do
   describe "posting chat messages" do
     setup do: clear_config([:instance, :chat_limit])
 
+    test "it posts a self-chat" do
+      author = insert(:user)
+      recipient = author
+
+      {:ok, activity} =
+        CommonAPI.post_chat_message(
+          author,
+          recipient,
+          "remember to buy milk when milk truk arive"
+        )
+
+      assert activity.data["type"] == "Create"
+    end
+
     test "it posts a chat message without content but with an attachment" do
       author = insert(:user)
       recipient = insert(:user)