forked from AkkomaGang/akkoma
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
16 lines
544 B
Elixir
16 lines
544 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 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
|