forked from AkkomaGang/akkoma
Add mock.
This commit is contained in:
parent
81ea359a7c
commit
fc9d361d17
1 changed files with 7 additions and 0 deletions
|
@ -373,6 +373,13 @@ def get("http://mastodon.example.org/users/admin", ["Accept": "application/activ
|
|||
}}
|
||||
end
|
||||
|
||||
def get("http://mastodon.example.org/@admin/99541947525187367", ["Accept": "application/activity+json"], _) do
|
||||
{:ok, %Response{
|
||||
status_code: 200,
|
||||
body: File.read!("test/fixtures/mastodon-note-object.json")
|
||||
}}
|
||||
end
|
||||
|
||||
def get(url, body, headers) do
|
||||
{:error, "Not implemented the mock response for get #{inspect(url)}, #{inspect(body)}, #{inspect(headers)}"}
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue