diff options
author | mouse bot <mousebot@riseup.net> | 2021-11-12 16:50:57 +0000 |
---|---|---|
committer | mouse bot <mousebot@riseup.net> | 2021-11-12 16:50:57 +0000 |
commit | c2ff442e47751dc32407b312c78098b8dd3466a7 (patch) | |
tree | f348916cbbe0919ff08a6e076d151a69e31b7b0e /test/mastodon-auth-test.el | |
parent | 1892014062229f3b68136495e53e90a51dfa58a1 (diff) | |
parent | eb922191259721d6b1b232de41bbd43ebdb10d2f (diff) |
Merge pull request 'Do a bit of work on tests' (#18) from h_d/mastodon.el:tests into develop
Reviewed-on: https://git.blast.noho.st/mouse/mastodon.el/pulls/18
Diffstat (limited to 'test/mastodon-auth-test.el')
-rw-r--r-- | test/mastodon-auth-test.el | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/test/mastodon-auth-test.el b/test/mastodon-auth-test.el deleted file mode 100644 index 9a765b9..0000000 --- a/test/mastodon-auth-test.el +++ /dev/null @@ -1,47 +0,0 @@ -;;; mastodon-auth--test.el --- Tests for mastodon-auth -*- lexical-binding: t; -*- - -;; Copyright (C) 2020 Ian Eure - -;; Author: Ian Eure <ian@retrospec.tv> -;; Version: 0.9.1 -;; Homepage: https://github.com/jdenen/mastodon.el -;; Package-Requires: ((emacs "26.1")) - -;; This file is not part of GNU Emacs. - -;; This file is part of mastodon.el. - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see <https://www.gnu.org/licenses/>. - -;;; Commentary: - -;; mastodon-auth--test.el provides ERT tests for mastodon-auth.el - -;;; Code: - -(require 'ert) - -(ert-deftest mastodon-auth--handle-token-response--good () - (should (string= "foo" (mastodon-auth--handle-token-response '(:access_token "foo" :token_type "Bearer" :scope "read write follow" :created_at 0))))) - -(ert-deftest mastodon-auth--handle-token-response--unknown () - :expected-result :failed - (mastodon-auth--handle-token-response '(:herp "derp"))) - -(ert-deftest mastodon-auth--handle-token-response--failure () - :expected-result :failed - (mastodon-auth--handle-token-response '(:error "invalid_grant" :error_description "The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client."))) - -(provide 'mastodon-auth--test) -;;; mastodon-auth--test.el ends here |