diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-01-06 11:43:07 -0600 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-01-06 11:43:07 -0600 |
commit | 9f6fa5877faee2de0bbec27d434e04972ce13a96 (patch) | |
tree | 12336f0fcd6c939e02de9ee9f0eab4073656cbd8 | |
parent | 20af025c65dac642f664760a1428b2ab88920641 (diff) | |
download | pleroma-9f6fa5877faee2de0bbec27d434e04972ce13a96.tar.gz |
Add AdminAPI.AccountViewTest
-rw-r--r-- | test/pleroma/web/admin_api/views/account_view_test.exs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/pleroma/web/admin_api/views/account_view_test.exs b/test/pleroma/web/admin_api/views/account_view_test.exs new file mode 100644 index 000000000..f54214575 --- /dev/null +++ b/test/pleroma/web/admin_api/views/account_view_test.exs @@ -0,0 +1,16 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Web.AdminAPI.AccountViewTest do + use Pleroma.DataCase, async: true + import Pleroma.Factory + alias Pleroma.Web.AdminAPI.AccountView + + describe "show.json" do + test "renders the user's email" do + user = insert(:user, email: "yolo@yolofam.tld") + assert %{"email" => "yolo@yolofam.tld"} = AccountView.render("show.json", %{user: user}) + end + end +end |