]> git.eshelyaron.com Git - emacs.git/commitdiff
Add tests for count-lines
authorStefan Kangas <stefan@marxist.se>
Sun, 7 Feb 2021 23:24:11 +0000 (00:24 +0100)
committerStefan Kangas <stefan@marxist.se>
Sun, 7 Feb 2021 23:24:36 +0000 (00:24 +0100)
* test/lisp/simple-tests.el (simple-test-count-lines)
(simple-test-count-lines/ignore-invisible-lines): Add tests.

test/lisp/simple-tests.el

index 7b022811a5cf178be1bc8170ea4233ab70754f86..b4007a6c3f3a9cefc134bf1bfa58b482ae27d56e 100644 (file)
     (dotimes (_i 10) (insert (propertize "test " 'field (cons nil nil))))
     (should (= (count-words (point-min) (point-max)) 10))))
 
+\f
+;;; `count-lines'
+
+(ert-deftest simple-test-count-lines ()
+  (with-temp-buffer
+    (should (= (count-lines (point-min) (point-max)) 0))
+    (insert "foo")
+    (should (= (count-lines (point-min) (point-max)) 1))
+    (insert "\nbar\nbaz\n")
+    (should (= (count-lines (point-min) (point-max)) 3))
+    (insert "r\n")
+    (should (= (count-lines (point-min) (point-max)) 4))))
+
+(ert-deftest simple-test-count-lines/ignore-invisible-lines ()
+  (with-temp-buffer
+    (insert "foo\nbar")
+    (should (= (count-lines (point-min) (point-max) t) 2))
+    (insert (propertize "\nbar\nbaz\nzut" 'invisible t))
+    (should (= (count-lines (point-min) (point-max) t) 2))))
+
 \f
 ;;; `transpose-sexps'
 (defmacro simple-test--transpositions (&rest body)