diff options
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 ebd1e9c4d..e3310bb5d 100644 --- a/test/support/httpoison_mock.ex +++ b/test/support/httpoison_mock.ex @@ -756,6 +756,14 @@ defmodule HTTPoisonMock do       }}    end +  def get("https://n1u.moe/users/rye", [Accept: "application/activity+json"], _) do +    {:ok, +     %Response{ +       status_code: 200, +       body: File.read!("test/fixtures/httpoison_mock/rye.json") +     }} +  end +    def get(          "https://mst3k.interlinked.me/users/luciferMysticus",          [Accept: "application/activity+json"], | 
