forked from AkkomaGang/akkoma
Test for case-insensitive mastodon hashtag timelines.
This commit is contained in:
parent
4bcdbb12a4
commit
7dfe611620
1 changed files with 11 additions and 2 deletions
|
@ -944,11 +944,20 @@ test "hashtag timeline", %{conn: conn} do
|
|||
{:ok, [_activity]} =
|
||||
OStatus.fetch_activity_from_url("https://shitposter.club/notice/2827873")
|
||||
|
||||
conn =
|
||||
nconn =
|
||||
conn
|
||||
|> get("/api/v1/timelines/tag/2hu")
|
||||
|
||||
assert [%{"id" => id}] = json_response(conn, 200)
|
||||
assert [%{"id" => id}] = json_response(nconn, 200)
|
||||
|
||||
assert id == to_string(activity.id)
|
||||
|
||||
# works for different capitalization too
|
||||
nconn =
|
||||
conn
|
||||
|> get("/api/v1/timelines/tag/2HU")
|
||||
|
||||
assert [%{"id" => id}] = json_response(nconn, 200)
|
||||
|
||||
assert id == to_string(activity.id)
|
||||
end)
|
||||
|
|
Loading…
Reference in a new issue