diff options
| author | Hakaba Hitoyo <hakabahitoyo@yahoo.co.jp> | 2019-12-10 13:19:26 +0000 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2019-12-10 13:19:26 +0000 | 
| commit | 701815e64c35160d29e418724c29cbe2d8b4024d (patch) | |
| tree | 5772b66eb90fc3f9d1cd7a2d6a3a9896c382d40b /test/web | |
| parent | 99623b4eca8ad4af0b8e7adc9dd4765ba2922c8b (diff) | |
| download | pleroma-701815e64c35160d29e418724c29cbe2d8b4024d.tar.gz pleroma-701815e64c35160d29e418724c29cbe2d8b4024d.zip | |
[ActivityPub] Configurable ActivityPub actor type
Diffstat (limited to 'test/web')
| -rw-r--r-- | test/web/mastodon_api/views/account_view_test.exs | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/test/web/mastodon_api/views/account_view_test.exs b/test/web/mastodon_api/views/account_view_test.exs index 5e297d129..2107bb85c 100644 --- a/test/web/mastodon_api/views/account_view_test.exs +++ b/test/web/mastodon_api/views/account_view_test.exs @@ -66,6 +66,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do          note: "valid html",          sensitive: false,          pleroma: %{ +          actor_type: "Person",            discoverable: false          },          fields: [] @@ -106,7 +107,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do        insert(:user, %{          follower_count: 3,          note_count: 5, -        source_data: %{"type" => "Service"}, +        source_data: %{}, +        actor_type: "Service",          nickname: "shp@shitposter.club",          inserted_at: ~N[2017-08-15 15:47:06.597036]        }) @@ -134,6 +136,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do          note: user.bio,          sensitive: false,          pleroma: %{ +          actor_type: "Service",            discoverable: false          },          fields: [] @@ -278,7 +281,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do        insert(:user, %{          follower_count: 0,          note_count: 5, -        source_data: %{"type" => "Service"}, +        source_data: %{}, +        actor_type: "Service",          nickname: "shp@shitposter.club",          inserted_at: ~N[2017-08-15 15:47:06.597036]        }) @@ -311,6 +315,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do          note: user.bio,          sensitive: false,          pleroma: %{ +          actor_type: "Service",            discoverable: false          },          fields: [] | 
