lisp/obsolete/*tls.el: Note when obsolescence was decided
[emacs.git] / test / lisp / tar-mode-tests.el
blobf36fc718112f997fa167c703cec36e97372c7f4d
1 ;;; tar-mode-tests.el --- Test suite for tar-mode. -*- lexical-binding: t -*-
3 ;; Copyright (C) 2017-2018 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
20 ;;; Code:
21 (require 'ert)
22 (require 'tar-mode)
25 (ert-deftest tar-mode-test-tar-grind-file-mode ()
26 (let ((alist (list (cons 448 "rwx------")
27 (cons 420 "rw-r--r--")
28 (cons 292 "r--r--r--")
29 (cons 512 "--------T")
30 (cons 1024 "-----S---"))))
31 (dolist (x alist)
32 (should (equal (cdr x) (tar-grind-file-mode (car x)))))))
34 (provide 'tar-mode-tests)
36 ;; tar-mode-tests.el ends here