summaryrefslogtreecommitdiff
path: root/bog-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'bog-tests.el')
-rw-r--r--bog-tests.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/bog-tests.el b/bog-tests.el
index cdfa02f..d4fad48 100644
--- a/bog-tests.el
+++ b/bog-tests.el
@@ -589,3 +589,14 @@ some text"
(outline-next-visible-heading 3)
(should (equal (org-no-properties (org-get-heading t t))
"orange2000key")))))
+
+
+;;; Other
+
+(ert-deftest bog--find-duplicates ()
+ (should (equal nil (bog--find-duplicates nil)))
+ (should (equal (list 1) (bog--find-duplicates (list 1 1 2))))
+ (should (equal (list "a" "b")
+ (sort (bog--find-duplicates
+ (list "a" "b" "c" "b" "a"))
+ #'string-lessp))))