emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals-release/org 4764a2f 4/4: Set org-adapt-indentation expl


From: ELPA Syncer
Subject: [elpa] externals-release/org 4764a2f 4/4: Set org-adapt-indentation explicitly in some tests
Date: Sat, 15 May 2021 08:57:12 -0400 (EDT)

branch: externals-release/org
commit 4764a2fbf9619c8af06682e34e6492c48e9fb6eb
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Commit: Bastien <bzg@gnu.org>

    Set org-adapt-indentation explicitly in some tests
    
    * testing/lisp/test-org.el (test-org/indent-line)
    (test-org/indent-region): Make sure `org-adapt-indentation' is
    consistent with expected results.
---
 testing/lisp/test-org.el | 126 +++++++++++++++++++++++++----------------------
 1 file changed, 66 insertions(+), 60 deletions(-)

diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el
index f79086f..2383131 100644
--- a/testing/lisp/test-org.el
+++ b/testing/lisp/test-org.el
@@ -1007,22 +1007,23 @@
   ;; At the first line of an element, indent like previous element's
   ;; first line, ignoring footnotes definitions and inline tasks, or
   ;; according to parent.
-  (should
-   (= 2
-      (org-test-with-temp-text "A\n\n  B\n\nC<point>"
-       (org-indent-line)
-       (org-get-indentation))))
-  (should
-   (= 1
-      (org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC<point>"
-       (org-indent-line)
-       (org-get-indentation))))
-  (should
-   (= 1
-      (org-test-with-temp-text
-         " #+BEGIN_CENTER\n<point>  Contents\n#+END_CENTER"
-       (org-indent-line)
-       (org-get-indentation))))
+  (let ((org-adapt-indentation t))
+    (should
+     (= 2
+        (org-test-with-temp-text "A\n\n  B\n\nC<point>"
+                                (org-indent-line)
+                                (org-get-indentation))))
+    (should
+     (= 1
+        (org-test-with-temp-text " A\n\n[fn:1] B\n\n\nC<point>"
+                                (org-indent-line)
+                                (org-get-indentation))))
+    (should
+     (= 1
+        (org-test-with-temp-text
+        " #+BEGIN_CENTER\n<point>  Contents\n#+END_CENTER"
+        (org-indent-line)
+        (org-get-indentation)))))
   ;; Within code part of a source block, use language major mode if
   ;; `org-src-tab-acts-natively' is non-nil.  Otherwise, indent
   ;; according to line above.
@@ -1066,11 +1067,12 @@
 (ert-deftest test-org/indent-region ()
   "Test `org-indent-region' specifications."
   ;; Indent paragraph.
-  (should
-   (equal "A\nB\nC"
-         (org-test-with-temp-text " A\nB\n  C"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
+  (let ((org-adapt-indentation t))
+    (should
+     (equal "A\nB\nC"
+           (org-test-with-temp-text " A\nB\n  C"
+                                    (org-indent-region (point-min) (point-max))
+                                    (buffer-string)))))
   ;; Indent greater elements along with their contents.
   (should
    (equal "#+BEGIN_CENTER\nA\nB\n#+END_CENTER"
@@ -1083,11 +1085,12 @@
          (org-test-with-temp-text "#+BEGIN_VERSE\n A\n  B\n#+END_VERSE"
            (org-indent-region (point-min) (point-max))
            (buffer-string))))
-  (should
-   (equal "#+BEGIN_VERSE\n  A\n   B\n#+END_VERSE"
-         (org-test-with-temp-text " #+BEGIN_VERSE\n  A\n   B\n #+END_VERSE"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
+  (let ((org-adapt-indentation t))
+    (should
+     (equal "#+BEGIN_VERSE\n  A\n   B\n#+END_VERSE"
+           (org-test-with-temp-text " #+BEGIN_VERSE\n  A\n   B\n #+END_VERSE"
+                                    (org-indent-region (point-min) (point-max))
+                                    (buffer-string)))))
   ;; Indent example blocks as a single block, unless indentation
   ;; should be preserved.  In this case only indent the block markers.
   (should
@@ -1095,36 +1098,38 @@
          (org-test-with-temp-text "#+BEGIN_EXAMPLE\n A\n  B\n#+END_EXAMPLE"
            (org-indent-region (point-min) (point-max))
            (buffer-string))))
-  (should
-   (equal "#+BEGIN_EXAMPLE\n A\n  B\n#+END_EXAMPLE"
-         (org-test-with-temp-text " #+BEGIN_EXAMPLE\n  A\n   B\n #+END_EXAMPLE"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
-  (should
-   (equal "#+BEGIN_EXAMPLE -i\n  A\n   B\n#+END_EXAMPLE"
-         (org-test-with-temp-text
-             " #+BEGIN_EXAMPLE -i\n  A\n   B\n #+END_EXAMPLE"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
-  (should
-   (equal "#+BEGIN_EXAMPLE\n  A\n   B\n#+END_EXAMPLE"
-         (org-test-with-temp-text
-             " #+BEGIN_EXAMPLE\n  A\n   B\n #+END_EXAMPLE"
-           (let ((org-src-preserve-indentation t))
-             (org-indent-region (point-min) (point-max)))
-           (buffer-string))))
+  (let ((org-adapt-indentation t))
+    (should
+     (equal "#+BEGIN_EXAMPLE\n A\n  B\n#+END_EXAMPLE"
+           (org-test-with-temp-text " #+BEGIN_EXAMPLE\n  A\n   B\n 
#+END_EXAMPLE"
+                                    (org-indent-region (point-min) (point-max))
+                                    (buffer-string))))
+    (should
+     (equal "#+BEGIN_EXAMPLE -i\n  A\n   B\n#+END_EXAMPLE"
+           (org-test-with-temp-text
+            " #+BEGIN_EXAMPLE -i\n  A\n   B\n #+END_EXAMPLE"
+            (org-indent-region (point-min) (point-max))
+            (buffer-string))))
+    (should
+     (equal "#+BEGIN_EXAMPLE\n  A\n   B\n#+END_EXAMPLE"
+           (org-test-with-temp-text
+            " #+BEGIN_EXAMPLE\n  A\n   B\n #+END_EXAMPLE"
+            (let ((org-src-preserve-indentation t))
+              (org-indent-region (point-min) (point-max)))
+            (buffer-string)))))
   ;; Treat export blocks as a whole.
   (should
    (equal "#+BEGIN_EXPORT latex\n A\n  B\n#+END_EXPORT"
          (org-test-with-temp-text "#+BEGIN_EXPORT latex\n A\n  B\n#+END_EXPORT"
            (org-indent-region (point-min) (point-max))
            (buffer-string))))
-  (should
-   (equal "#+BEGIN_EXPORT latex\n A\n  B\n#+END_EXPORT"
-         (org-test-with-temp-text
-             " #+BEGIN_EXPORT latex\n  A\n   B\n #+END_EXPORT"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
+  (let ((org-adapt-indentation t))
+    (should
+     (equal "#+BEGIN_EXPORT latex\n A\n  B\n#+END_EXPORT"
+           (org-test-with-temp-text
+               " #+BEGIN_EXPORT latex\n  A\n   B\n #+END_EXPORT"
+             (org-indent-region (point-min) (point-max))
+             (buffer-string)))))
   ;; Indent according to mode if `org-src-tab-acts-natively' is
   ;; non-nil.  Otherwise, do not indent code at all.
   (should
@@ -1160,16 +1165,17 @@
              (org-indent-region (point) (point-max)))
            (buffer-string))))
   ;; Indent plain lists.
-  (should
-   (equal "- A\n  B\n  - C\n\n    D"
-         (org-test-with-temp-text "- A\n   B\n  - C\n\n     D"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
-  (should
-   (equal "- A\n\n- B"
-         (org-test-with-temp-text " - A\n\n - B"
-           (org-indent-region (point-min) (point-max))
-           (buffer-string))))
+  (let ((org-adapt-indentation t))
+    (should
+     (equal "- A\n  B\n  - C\n\n    D"
+           (org-test-with-temp-text "- A\n   B\n  - C\n\n     D"
+             (org-indent-region (point-min) (point-max))
+             (buffer-string))))
+    (should
+     (equal "- A\n\n- B"
+           (org-test-with-temp-text " - A\n\n - B"
+             (org-indent-region (point-min) (point-max))
+             (buffer-string)))))
   ;; Indent footnote definitions.
   (should
    (equal "[fn:1] Definition\n\nDefinition"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]