Give '$' punctuation syntax in make-mode (Bug#24477)
[emacs.git] / test / lisp / arc-mode-tests.el
blobc82599aae7ee3b8dd55c4cfea3da6ee9a8f93cb5
1 ;;; arc-mode-tests.el --- Test suite for arc-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 'arc-mode)
25 (ert-deftest arc-mode-test-archive-int-to-mode ()
26 (let ((alist (list (cons 448 "-rwx------")
27 (cons 420 "-rw-r--r--")
28 (cons 292 "-r--r--r--")
29 (cons 512 "----------")
30 (cons 1024 "------S---") ; Bug#28092
31 (cons 2048 "---S------"))))
32 (dolist (x alist)
33 (should (equal (cdr x) (archive-int-to-mode (car x)))))))
35 (provide 'arc-mode-tests)
37 ;; arc-mode-tests.el ends here