mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-14 13:02:08 +00:00
11 lines
263 B
Elixir
11 lines
263 B
Elixir
defmodule Pleroma.ObjectTest do
|
|
use Pleroma.DataCase
|
|
import Pleroma.Factory
|
|
|
|
test "returns an object by it's AP id" do
|
|
object = insert(:note)
|
|
found_object = Pleroma.Object.get_by_ap_id(object.data["id"])
|
|
|
|
assert object == found_object
|
|
end
|
|
end
|