diff options
author | raeno <just.raeno@gmail.com> | 2018-12-14 20:23:51 +0100 |
---|---|---|
committer | raeno <just.raeno@gmail.com> | 2018-12-14 20:23:51 +0100 |
commit | 9ff61ed793b7fd968b51c5f6e4b72958adeae977 (patch) | |
tree | 225dee0cb09e43db6639513bf3af893b9a32c5d8 /test | |
parent | 46486595ff96e0af0c3193e60879a8e67f77b933 (diff) | |
download | pleroma-9ff61ed793b7fd968b51c5f6e4b72958adeae977.tar.gz pleroma-9ff61ed793b7fd968b51c5f6e4b72958adeae977.zip |
Fix tests
Notice test has been failing due to missing placeholder in index.html
I've tried to use fixtures to substitute that file in test environment but it became too much hassle. Fixtures are not copied to _build directory so I'd need to change file fetching logic. IMO it doesn't worth it since pleroma-fe already has this placeholder merged and all future updated of index.html will include it.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/ostatus/ostatus_controller_test.exs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/web/ostatus/ostatus_controller_test.exs b/test/web/ostatus/ostatus_controller_test.exs index 747e30154..e9e9bdb16 100644 --- a/test/web/ostatus/ostatus_controller_test.exs +++ b/test/web/ostatus/ostatus_controller_test.exs @@ -136,17 +136,15 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do |> response(404) end - test "renders notice metatags in html format" do + test "renders notice metatags in html format", %{conn: conn} do note_activity = insert(:note_activity) - conn = get(conn, "/notice/#{note_activity.id}") - + body = html_response(conn, 200) twitter_card_summary = "<meta content=\"summary\" property=\"twitter:card\">" description_content = "<meta content=\"#{note_activity.data["object"]["content"]}\" property=\"og:description\">" - body = html_response(conn, 200) assert body =~ twitter_card_summary assert body =~ description_content end |