Browse Source

Format.

tags/v0.9.9
lain 5 years ago
parent
commit
27aa136aac
2 changed files with 5 additions and 5 deletions
  1. +0
    -1
      lib/pleroma/web/router.ex
  2. +5
    -4
      test/web/twitter_api/twitter_api_controller_test.exs

+ 0
- 1
lib/pleroma/web/router.ex View File

@@ -248,7 +248,6 @@ defmodule Pleroma.Web.Router do
)

get("/statuses/networkpublic_timeline", TwitterAPI.Controller, :public_and_external_timeline)

end

scope "/api", Pleroma.Web, as: :twitter_api_search do


+ 5
- 4
test/web/twitter_api/twitter_api_controller_test.exs View File

@@ -1218,12 +1218,13 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
user_two = insert(:user, %{name: "ean"})
user_three = insert(:user, %{name: "ebn"})

resp = conn
|> get(twitter_api_search__path(conn, :search_user), query: "eal")
|> json_response(200)
resp =
conn
|> get(twitter_api_search__path(conn, :search_user), query: "eal")
|> json_response(200)

assert length(resp) == 3
assert [user.id, user_two.id, user_three.id] == Enum.map(resp, fn (%{"id" => id}) -> id end)
assert [user.id, user_two.id, user_three.id] == Enum.map(resp, fn %{"id" => id} -> id end)
end
end
end

Loading…
Cancel
Save