summaryrefslogtreecommitdiff
path: root/test/web
diff options
context:
space:
mode:
Diffstat (limited to 'test/web')
-rw-r--r--test/web/ostatus/ostatus_controller_test.exs6
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