1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.ReportNoteTest do
6 alias Pleroma.ReportNote
7 use Pleroma.DataCase, async: true
12 report = insert(:report_activity)
13 assert {:ok, note} = ReportNote.create(user.id, report.id, "naughty boy")
14 assert note.content == "naughty boy"