forked from AkkomaGang/akkoma
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
18 lines
532 B
Elixir
18 lines
532 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.PleromaAPI.BackupViewTest do
|
|
use Pleroma.DataCase, async: true
|
|
alias Pleroma.User.Backup
|
|
alias Pleroma.Web.PleromaAPI.BackupView
|
|
import Pleroma.Factory
|
|
|
|
test "it renders the ID" do
|
|
user = insert(:user)
|
|
backup = Backup.new(user)
|
|
|
|
result = BackupView.render("show.json", backup: backup)
|
|
assert result.id == backup.id
|
|
end
|
|
end
|