summaryrefslogtreecommitdiff
path: root/test/pagination_test.exs
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2020-07-26 15:46:14 -0500
committerAlex Gleason <alex@alexgleason.me>2020-07-26 15:46:14 -0500
commit6931dbfa582f0e5360e74dffdceee1b9ed564b17 (patch)
tree1504bbc09a53d5c117ffc671b9816ddf30e075cf /test/pagination_test.exs
parent15f8921b111bc38d0d9eb9ccd1fd09e41cdbc85e (diff)
parenta7616dec8c43309975cbdfcdd6a1808b56aa66e6 (diff)
downloadpleroma-6931dbfa582f0e5360e74dffdceee1b9ed564b17.tar.gz
pleroma-6931dbfa582f0e5360e74dffdceee1b9ed564b17.zip
Merge remote-tracking branch 'upstream/develop' into by-approval
Diffstat (limited to 'test/pagination_test.exs')
-rw-r--r--test/pagination_test.exs14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/pagination_test.exs b/test/pagination_test.exs
index 9165427ae..e526f23e8 100644
--- a/test/pagination_test.exs
+++ b/test/pagination_test.exs
@@ -54,6 +54,20 @@ defmodule Pleroma.PaginationTest do
assert length(paginated) == 1
end
+
+ test "handles id gracefully", %{notes: notes} do
+ id = Enum.at(notes, 1).id |> Integer.to_string()
+
+ paginated =
+ Pagination.fetch_paginated(Object, %{
+ id: "9s99Hq44Cnv8PKBwWG",
+ max_id: id,
+ limit: 20,
+ offset: 0
+ })
+
+ assert length(paginated) == 1
+ end
end
describe "offset" do