org-mode/testing/lisp/test-org-inlinetask.el

68 lines
1.9 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; test-org-inlinetask.el --- Tests for org-inlinetask.el
;; Copyright (c) Marco Wahl
;; Authors: Marco Wahl
;; 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/>.
;;; Comments:
;; Tests for org-inlinetask.el.
;;; Code:
(require 'org-inlinetask)
;;; Test movement
(ert-deftest test-org-inlinetask/goto-end ()
"Tests around org-inlinetask."
;; Goto end.
(should
(equal "** H\n***** I\n***** END<point>\nfoo"
(let ((org-inlinetask-min-level 5)
(org-adapt-indentation t))
(org-test-with-temp-text
"** H\n<point>***** I\n***** END\nfoo"
(org-inlinetask-goto-end)
(insert "<point>")
(buffer-string)))))
;; Goto end. End is buffer end.
(should
(equal "** H\n***** I\n***** END<point>"
(let ((org-inlinetask-min-level 5)
(org-adapt-indentation t))
(org-test-with-temp-text
"** H\n<point>***** I\n***** END"
(org-inlinetask-goto-end)
(insert "<point>")
(buffer-string)))))
;; Goto end. Starting somewhere.
(should
(equal "** H\n***** I\n***** END<point>\n***** I\n***** END"
(let ((org-inlinetask-min-level 5)
(org-adapt-indentation t))
(org-test-with-temp-text
"** H\n****<point>* I\n***** END\n***** I\n***** END"
(org-inlinetask-goto-end)
(insert "<point>")
(buffer-string))))))
(provide 'test-org-inlinetask)
;;; test-org-inlinetask.el ends here