aboutsummaryrefslogtreecommitdiffstats
path: root/test/lisp
diff options
context:
space:
mode:
authorGlenn Morris2018-02-05 07:50:22 -0800
committerGlenn Morris2018-02-05 07:50:22 -0800
commita0c7157a16481b0523ad20cda9115f9435188f73 (patch)
tree4e23a700da7c493f54f0afeb337fd963502115cb /test/lisp
parentc24c5dc4a4cc18e7f1ec949efcfe1d4bae541d02 (diff)
parentc787a4968273027960a20ced6d63bae0d1ffa87e (diff)
downloademacs-a0c7157a16481b0523ad20cda9115f9435188f73.tar.gz
emacs-a0c7157a16481b0523ad20cda9115f9435188f73.zip
Merge from origin/emacs-26
c787a49 (origin/emacs-26) * lisp/vc/vc-git.el (vc-git-print-log): Res... b654791 * doc/emacs/misc.texi (Interactive Shell): Refer to node "Min... f1102d2 Yet another round of fixing the Emacs manual 76b5a68 * etc/NEWS: Expunge the solecism "allow(s)" + infinitive b4ff8cc Two minor fixes in Antinews aafcd12 * etc/NEWS: Rename image-dired-thumb-job-limit a893924 * lisp/simple.el (async-shell-command, shell-command): Fix gr... 699081f Fix deferred display of async shell-command buffers d2d5e54 Mention remote file name completion in Emacs manual f589f5a Yest another round of manual copyedits 1ed4089 Update xdisp.c commentary e23de39 Fix Bug#30324 e1a9dc0 Recognize Org as builtin package (bug#30310) Conflicts: etc/NEWS
Diffstat (limited to 'test/lisp')
-rw-r--r--test/lisp/org/org-tests.el31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/lisp/org/org-tests.el b/test/lisp/org/org-tests.el
new file mode 100644
index 00000000000..a2201888563
--- /dev/null
+++ b/test/lisp/org/org-tests.el
@@ -0,0 +1,31 @@
1;;; org-tests.el --- tests for org/org.el
2
3;; Copyright (C) 2018 Free Software Foundation, Inc.
4
5;; Maintainer: emacs-devel@gnu.org
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
21
22;;; Commentary:
23
24;;; Code:
25
26(ert-deftest org-package-version ()
27 "Test Version: header is present and correct.
28Ref <https://debbugs.gnu.org/30310>."
29 (should (require 'org-version nil t))
30 (should (equal (version-to-list (org-release))
31 (cdr (assq 'org package--builtin-versions)))))