2020-08-02 21:37:33 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-08-02 21:37:33 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.ReportNoteTest do
|
|
|
|
alias Pleroma.ReportNote
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.DataCase, async: true
|
2020-08-02 21:37:33 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
test "create/3" do
|
|
|
|
user = insert(:user)
|
|
|
|
report = insert(:report_activity)
|
|
|
|
assert {:ok, note} = ReportNote.create(user.id, report.id, "naughty boy")
|
|
|
|
assert note.content == "naughty boy"
|
|
|
|
end
|
|
|
|
end
|