diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-09-01 23:33:10 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-09-01 23:33:10 +0000 |
commit | 303af9ba4c4b4b079f0d1ef474dda7afc13e30e0 (patch) | |
tree | 858dca1d00d71860542055fdb3a621ee07a85d55 /test/support | |
parent | 0b2c051a04b3eeb7292f2b847c98fcbafbb20ed2 (diff) | |
download | pleroma-303af9ba4c4b4b079f0d1ef474dda7afc13e30e0.tar.gz |
tests: add regression tests
Diffstat (limited to 'test/support')
-rw-r--r-- | test/support/httpoison_mock.ex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/support/httpoison_mock.ex b/test/support/httpoison_mock.ex index 4ee2feb95..7057f30fb 100644 --- a/test/support/httpoison_mock.ex +++ b/test/support/httpoison_mock.ex @@ -3,6 +3,14 @@ defmodule HTTPoisonMock do def get(url, body \\ [], headers \\ []) + def get("https://info.pleroma.site/activity.json", _, _) do + {:ok, + %Response{ + status_code: 200, + body: File.read!("test/fixtures/httpoison_mock/https__info.pleroma.site_activity.json") + }} + end + def get("https://puckipedia.com/", [Accept: "application/activity+json"], _) do {:ok, %Response{ |