blob: 972cedb682de14d5e14eb11f40166e9d875b22ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
(require 'el-mock)
(ert-deftest mastodon-http:get:retrieves-endpoint ()
"Should make a `url-retrieve' of the given URL."
(let ((callback-double (lambda () "double")))
(with-mock
(mock (url-retrieve-synchronously "https://foo.bar/baz"))
(mock (mastodon-auth--access-token) => "test-token")
(mastodon-http--get "https://foo.bar/baz"))))
|