Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
75c4fefb
Commit
75c4fefb
authored
Jan 23, 2022
by
marcin mikołajczak
Browse files
Add a test
Signed-off-by:
marcin mikołajczak
<
git@mkljczk.pl
>
parent
1dba3bc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/pleroma/user_test.exs
View file @
75c4fefb
...
...
@@ -2084,6 +2084,17 @@ test "it returns a list of AP ids for a given set of nicknames" do
assert
user
.
ap_id
in
ap_ids
assert
user_two
.
ap_id
in
ap_ids
end
test
"it returns a list of AP ids in the same order"
do
user
=
insert
(
:user
)
user_two
=
insert
(
:user
)
user_three
=
insert
(
:user
)
ap_ids
=
User
.
get_ap_ids_by_nicknames
([
user
.
nickname
,
user_three
.
nickname
,
user_two
.
nickname
])
assert
[
user
.
ap_id
,
user_three
.
ap_id
,
user_two
.
ap_id
]
==
ap_ids
end
end
describe
"sync followers count"
do
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment