aboutsummaryrefslogtreecommitdiff
path: root/test/mastodon-tl-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/mastodon-tl-tests.el')
-rw-r--r--test/mastodon-tl-tests.el44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/mastodon-tl-tests.el b/test/mastodon-tl-tests.el
index 3fb2c3b..caea476 100644
--- a/test/mastodon-tl-tests.el
+++ b/test/mastodon-tl-tests.el
@@ -236,47 +236,3 @@
| (B) (F) Account 42 (@acct42@example.space) Boosted Account 43 (@acct43@example.space) original time
------------")))))
-(ert-deftest mastodon-tl--endpoint-notifications ()
- "Should return the appropriate endpoint string and update function format
-
-notifications."
- (should
- (and
- (equal
- 'mastodon-notifications--notifications
- (plist-get (mastodon-tl--get-endpoint "notifications")
- 'update-function))
- (equal
- "notifications"
- (plist-get (mastodon-tl--get-endpoint "notifications")
- 'endpoint)))))
-
-(ert-deftest mastodon-tl--endpoint-tag ()
- "Should return the appropriate endpoint string and update function for
-
-tags."
- (should
- (and
- (equal
- 'mastodon-tl--timeline
- (plist-get (mastodon-tl--get-endpoint "tag/test")
- 'update-function))
- (equal
- "timelines/tag/test"
- (plist-get (mastodon-tl--get-endpoint "tag/test")
- 'endpoint)))))
-
-(ert-deftest mastodon-tl--endpoint-local ()
- "Should return the appropriate endpoint string and update function for
-
-the local timeline."
- (should
- (and
- (equal
- 'mastodon-tl--timeline
- (plist-get (mastodon-tl--get-endpoint "public?local=true")
- 'update-function))
- (equal
- "timelines/public?local=true"
- (plist-get (mastodon-tl--get-endpoint "public?local=true")
- 'endpoint)))))