emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 15788b0aee514a48941ba9aca5e2232e741f8f06 1932 bytes (raw)
name: testing/lisp/test-ox-odt.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
 
;;; test-ox-odt.el --- Tests for ox-md.el                   -*- lexical-binding: t; -*-

;; Copyright (C) 2019  Sacha Chua

;; Author: Sacha Chua <sacha at sachachua dot com>

;; This file is not part of GNU Emacs.

;; 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 <http://www.gnu.org/licenses/>.

(unless (featurep 'ox)
  (signal 'missing-test-dependency "org-export"))
(unless (featurep 'ox-odt)
  (signal 'missing-test-dependency "ox-odt"))

;;; Code:
;;; Table of contents
(ert-deftest test-org-odt/keyword ()
  "Test `org-odt-keyword' specifications."
  (org-test-in-example-file org-test-toc-with-target-file
    (let* ((body (org-export-as (org-export-get-backend 'odt) nil nil t))
	   (toc
	    (and (string-match "<text:index-body>.*\\(\n.*\\)*" body)
		 (match-string 0 body))))
      (should (string-match "Heading A" toc))
      (should (string-match "Heading B" toc))
      (should-not (string-match "Heading X" toc))))
  (org-test-in-example-file org-test-toc-with-fuzzy-target-file
    (let* ((body (org-export-as (org-export-get-backend 'odt) nil nil t))
	   (toc
	    (and (string-match "<text:index-body>.*\\(\n.*\\)*" body)
		 (match-string 0 body))))
      (should (string-match "Heading A" toc))
      (should (string-match "Heading B" toc))
      (should-not (string-match "Heading X" toc)))))

(provide 'test-ox-odt)

;;; test-ox-odt.el ends here


debug log:

solving 15788b0ae ...
found 15788b0ae in https://list.orgmode.org/orgmode/87r28z7dcf.fsf@sachachua.com/ ||
	https://list.orgmode.org/orgmode/87woir7dm5.fsf@sachachua.com/

applying [1/1] https://list.orgmode.org/orgmode/87r28z7dcf.fsf@sachachua.com/
diff --git a/testing/lisp/test-ox-odt.el b/testing/lisp/test-ox-odt.el
new file mode 100644
index 000000000..15788b0ae

Checking patch testing/lisp/test-ox-odt.el...
1:57: new blank line at EOF.
+
Applied patch testing/lisp/test-ox-odt.el cleanly.
warning: 1 line adds whitespace errors.

skipping https://list.orgmode.org/orgmode/87woir7dm5.fsf@sachachua.com/ for 15788b0ae
index at:
100644 15788b0aee514a48941ba9aca5e2232e741f8f06	testing/lisp/test-ox-odt.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).