test: add malformed OGP data fixture

This commit is contained in:
William Pitcock 2019-01-31 16:12:35 +00:00
parent dafb6f0b5e
commit 4e76f9fde1
2 changed files with 4878 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -657,6 +657,10 @@ defmodule HttpRequestMock do
{:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
end
def get("http://example.com/malformed", _, _, _) do
{:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
end
def get("http://example.com/empty", _, _, _) do
{:ok, %Tesla.Env{status: 200, body: "hello"}}
end