From 0c80780a32b6a70c4da30c53fb2f646d6ac79b7a Mon Sep 17 00:00:00 2001 From: Johnson Denen Date: Wed, 12 Apr 2017 18:01:13 -0400 Subject: Add `mastodon-auth--client' function Replace direct references to `mastodon--client-app-plist' --- test/mastodon-auth-tests.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/mastodon-auth-tests.el b/test/mastodon-auth-tests.el index 7c2bb0c..1bbc46b 100644 --- a/test/mastodon-auth-tests.el +++ b/test/mastodon-auth-tests.el @@ -43,11 +43,14 @@ => (funcall 'mastodon-auth--registration-success)) (should (eq app-plist (mastodon--register-client-app-triage "status")))))) -(ert-deftest mastodon-auth:register-and-return-client-app () - "Should return a plist of client_id and client_secret after registration." - (let ((app-plist '("id" "id-val" "secret" "secret-val"))) +(ert-deftest mastodon-auth:register-and-return-client-app:with-p () + "Should return a plist of client_id and client_secret without registration." + (let ((app-plist '(:client_id "id-val" :client_secret "secret-val"))) (with-mock - (mock (mastodon--register-client-app) => app-plist) + (mock (mastodon-auth--client-app-secret-p) => t) + (mock (mastodon-auth--client) => app-plist) + (stub mastodon-auth--registration-success => mastodon--client-app-plist) + (not-called sleep-for) (should (equal app-plist (mastodon--register-and-return-client-app)))))) (defun helper:read-plstore (file key) -- cgit v1.2.3