Allow using cws in mastodon api.

This commit is contained in:
Roger Braun 2017-10-31 19:44:36 +01:00
commit e014cc6ed8
2 changed files with 4 additions and 3 deletions

View file

@ -50,9 +50,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
conn = conn
|> assign(:user, user)
|> post("/api/v1/statuses", %{"status" => "cofe"})
|> post("/api/v1/statuses", %{"status" => "cofe", "spoiler_text" => "2hu"})
assert %{"content" => "cofe", "id" => id} = json_response(conn, 200)
assert %{"content" => "cofe", "id" => id, "spoiler_text" => "2hu"} = json_response(conn, 200)
assert Repo.get(Activity, id)
end