diff options
| author | lain <lain@soykaf.club> | 2020-04-08 15:55:43 +0200 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-04-08 15:55:43 +0200 |
| commit | 3775683a04e9b819f88bfba533b755bbd5b3c2df (patch) | |
| tree | 2e12793eb3d3f1a80c79f65fae27bba6eb04f1df /test/web/activity_pub/object_validators | |
| parent | 19335be24c25739e2334180af6c59dd8919d5fc8 (diff) | |
| download | pleroma-3775683a04e9b819f88bfba533b755bbd5b3c2df.tar.gz pleroma-3775683a04e9b819f88bfba533b755bbd5b3c2df.zip | |
ChatMessage: Basic incoming handling.
Diffstat (limited to 'test/web/activity_pub/object_validators')
| -rw-r--r-- | test/web/activity_pub/object_validators/types/recipients_test.exs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/web/activity_pub/object_validators/types/recipients_test.exs b/test/web/activity_pub/object_validators/types/recipients_test.exs new file mode 100644 index 000000000..2f9218774 --- /dev/null +++ b/test/web/activity_pub/object_validators/types/recipients_test.exs @@ -0,0 +1,15 @@ +defmodule Pleroma.Web.ObjectValidators.Types.RecipientsTest do + alias Pleroma.Web.ActivityPub.ObjectValidators.Types.Recipients + use Pleroma.DataCase + + test "it works with a list" do + list = ["https://lain.com/users/lain"] + assert {:ok, list} == Recipients.cast(list) + end + + test "it turns a single string into a list" do + recipient = "https://lain.com/users/lain" + + assert {:ok, [recipient]} == Recipients.cast(recipient) + end +end |
