X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fbookmark_test.exs;h=e54bd359c7de54d5b1fbe8b59e446e3004e77513;hb=60ba2339a244290f7353e8026032b1a5d185227c;hp=3be148023eb9079539b75f13b7a4ce1e50a4afc1;hpb=002ea343f8c6dc9669bce91942f835a2c7cc6ae7;p=akkoma diff --git a/test/bookmark_test.exs b/test/bookmark_test.exs index 3be148023..e54bd359c 100644 --- a/test/bookmark_test.exs +++ b/test/bookmark_test.exs @@ -1,3 +1,7 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2019 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + defmodule Pleroma.BookmarkTest do use Pleroma.DataCase import Pleroma.Factory @@ -34,4 +38,19 @@ defmodule Pleroma.BookmarkTest do {:ok, _deleted_bookmark} = Bookmark.destroy(user.id, activity.id) end end + + describe "get/2" do + test "gets a bookmark" do + user = insert(:user) + + {:ok, activity} = + CommonAPI.post(user, %{ + "status" => + "Scientists Discover The Secret Behind Tenshi Eating A Corndog Being So Cute – Science Daily" + }) + + {:ok, bookmark} = Bookmark.create(user.id, activity.id) + assert bookmark == Bookmark.get(user.id, activity.id) + end + end end