Quellcode durchsuchen

Test for MastoAPI /api/v1/instance response structure (formatting fix).

tags/v1.1.4
Ivan Tashkinov vor 5 Jahren
Ursprung
Commit
47b49ab1a1
1 geänderte Dateien mit 13 neuen und 13 gelöschten Zeilen
  1. +13
    -13
      test/web/mastodon_api/mastodon_api_controller_test.exs

+ 13
- 13
test/web/mastodon_api/mastodon_api_controller_test.exs Datei anzeigen

@@ -1813,19 +1813,19 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do

# Note: not checking for "max_toot_chars" since it's optional
assert %{
"uri" => _,
"title" => _,
"description" => _,
"version" => _,
"email" => _,
"urls" => %{
"streaming_api" => _
},
"stats" => _,
"thumbnail" => _,
"languages" => _,
"registrations" => _
} = result
"uri" => _,
"title" => _,
"description" => _,
"version" => _,
"email" => _,
"urls" => %{
"streaming_api" => _
},
"stats" => _,
"thumbnail" => _,
"languages" => _,
"registrations" => _
} = result
end

test "get instance stats", %{conn: conn} do


Laden…
Abbrechen
Speichern