From 54f93be1d072b26986b7f86bd34cc51945cef8e5 Mon Sep 17 00:00:00 2001 From: Marco Wahl Date: Fri, 4 Dec 2015 19:59:52 +0100 Subject: [PATCH] test-org-inlinetask: Testing inlinetasks * testing/lisp/test-org-inlinetask.el: New file. Testing `org-inlinetask-goto-end'. --- testing/lisp/test-org-inlinetask.el | 67 +++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 testing/lisp/test-org-inlinetask.el diff --git a/testing/lisp/test-org-inlinetask.el b/testing/lisp/test-org-inlinetask.el new file mode 100644 index 000000000..2025f721d --- /dev/null +++ b/testing/lisp/test-org-inlinetask.el @@ -0,0 +1,67 @@ +;;; 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 . + +;;; 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\nfoo" + (let ((org-inlinetask-min-level 5) + (org-adapt-indentation t)) + (org-test-with-temp-text + "** H\n***** I\n***** END\nfoo" + (org-inlinetask-goto-end) + (insert "") + (buffer-string))))) + + ;; Goto end. End is buffer end. + (should + (equal "** H\n***** I\n***** END" + (let ((org-inlinetask-min-level 5) + (org-adapt-indentation t)) + (org-test-with-temp-text + "** H\n***** I\n***** END" + (org-inlinetask-goto-end) + (insert "") + (buffer-string))))) + + ;; Goto end. Starting somewhere. + (should + (equal "** H\n***** I\n***** END\n***** I\n***** END" + (let ((org-inlinetask-min-level 5) + (org-adapt-indentation t)) + (org-test-with-temp-text + "** H\n***** I\n***** END\n***** I\n***** END" + (org-inlinetask-goto-end) + (insert "") + (buffer-string)))))) + +(provide 'test-org-inlinetask) + +;;; test-org-inlinetask.el ends here -- 2.11.4.GIT