logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 9f6fa5877faee2de0bbec27d434e04972ce13a96
parent 20af025c65dac642f664760a1428b2ab88920641
Author: Alex Gleason <alex@alexgleason.me>
Date:   Wed,  6 Jan 2021 11:43:07 -0600

Add AdminAPI.AccountViewTest

Diffstat:

Atest/pleroma/web/admin_api/views/account_view_test.exs16++++++++++++++++
1 file 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 @@ -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