123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758 |
- (require 'org-capture)
- (ert-deftest test-org-capture/fill-template ()
- "Test `org-capture-fill-template' specifications."
-
-
-
- (should
- (equal "success!\n"
- (org-capture-fill-template "%(concat \"success\" \"!\")")))
-
-
- (should
- (equal "Nested string \"\\\"\\\"\"\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "%(concat \"%i\")"
- "Nested string \"\\\"\\\"\""))))
-
- (should
- (equal (concat (format-time-string "%Y") "\n")
- (org-capture-fill-template "%<%Y>")))
-
- (should
- (equal (concat (format-time-string (org-time-stamp-format nil nil)) "\n")
- (org-capture-fill-template "%t")))
- (should
- (equal (concat (format-time-string (org-time-stamp-format t nil)) "\n")
- (org-capture-fill-template "%T")))
-
- (should
- (equal
- (concat (format-time-string (org-time-stamp-format nil t)) "\n")
- (org-capture-fill-template "%u")))
- (should
- (equal
- (concat (format-time-string (org-time-stamp-format t t)) "\n")
- (org-capture-fill-template "%U")))
-
-
- (should
- (equal "success!\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "%i" "success!"))))
- (should
- (equal "%(concat \"no \" \"evaluation\")\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template
- "%i" "%(concat \"no \" \"evaluation\")"))))
-
-
-
- (should
- (equal "> line 1\n> line 2\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "> %i" "line 1\nline 2"))))
- (should
- (equal "\\ line 1\n\\ line 2\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "\\ %i" "line 1\nline 2"))))
-
- (should
- (equal "%i\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "\\%i" "success!"))))
- (should
- (equal "\\success!\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "\\\\%i" "success!"))))
- (should
- (equal "\\%i\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "\\\\\\%i" "success!"))))
-
- (should
- (equal "success! success! success! success!\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template "%i %i %i %i" "success!"))))
-
-
- (should
- (equal "5 % Less (See Item \"3)\" Somewhere)\n"
- (let ((org-store-link-plist nil))
- (org-capture-fill-template
- "%(capitalize \"%i\")"
- "5 % less (see item \"3)\" somewhere)")))))
- (ert-deftest test-org-capture/refile ()
- "Test `org-capture-refile' specifications."
-
-
-
- (should
- (string-prefix-p
- "** H1"
- (org-test-with-temp-text-in-file "* A\n* B\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Todo" entry (file+headline ,file "A") "** H1 %?"))))
- (org-capture nil "t")
- (insert "\n")
- (cl-letf (((symbol-function 'org-refile)
- (lambda ()
- (interactive)
- (throw :return
- (buffer-substring-no-properties
- (line-beginning-position)
- (line-end-position))))))
- (catch :return (org-capture-refile)))))))
-
-
- (should
- (org-test-with-temp-text-in-file "* Refile target"
- (let ((file1 (buffer-file-name)))
- (org-test-with-temp-text-in-file "* A"
- (let* ((file2 (buffer-file-name))
- (org-capture-templates
- `(("t" "Todo" entry (file+headline ,file2 "A")
- "** H1 %?" :jump-to-captured t))))
- (org-capture nil "t")
- (cl-letf (((symbol-function 'org-refile-get-location)
- (lambda (&rest args)
- (list (file-name-nondirectory file1) file1 nil nil))))
- (org-capture-refile)
- (list file1 file2 (buffer-file-name)))))))))
- (ert-deftest test-org-capture/abort ()
- "Test aborting a capture process."
-
-
- (should
- (equal
- "* A\n* B\n"
- (org-test-with-temp-text-in-file "* A\n* B\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Todo" entry (file+headline ,file "A") "** H1 %?"))))
- (org-capture nil "t")
- (goto-char (point-max))
- (insert "Capture text")
- (org-capture-kill))
- (buffer-string))))
- (should
- (equal "- A\n - B\n"
- (org-test-with-temp-text-in-file "- A\n - B"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"))))
- (org-capture nil "t")
- (org-capture-kill))
- (buffer-string))))
- (should
- (equal "| a |\n| b |\n"
- (org-test-with-temp-text-in-file "| a |\n| b |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file) "| x |"))))
- (org-capture nil "t")
- (org-capture-kill))
- (buffer-string))))
-
- (should
- (equal
- "* AB\n"
- (org-test-with-temp-text-in-file "* AB\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Todo" entry
- (file+function ,file (lambda () (goto-char 4))) "** H1 %?"))))
- (org-capture nil "t")
- (org-capture-kill))
- (buffer-string)))))
- (ert-deftest test-org-capture/entry ()
- "Test `entry' type in capture template."
-
- (should
- (equal
- "* A\n** H1 Capture text\n* B\n"
- (org-test-with-temp-text-in-file "* A\n* B\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Todo" entry (file+headline ,file "A") "** H1 %?"))))
- (org-capture nil "t")
- (insert "Capture text")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "** H"
- (org-test-with-temp-text-in-file "* A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" entry (file+headline ,file "A") "** H\nFoo"
- :immediate-finish t))))
- (org-capture nil "t")
- (org-capture '(16))
- (buffer-substring (point) (line-end-position))))))
-
- (should
- (org-test-with-temp-text-in-file ""
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" entry (file+headline ,file "A") "** "
- :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string))))
-
- (should
- (equal "Foo\n* X\nBar\n"
- (org-test-with-temp-text-in-file "Foo\nBar"
- (forward-line)
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" entry (file ,file) "* X"
- :immediate-finish t))))
- (org-capture 0 "t")
- (buffer-string)))))
-
- (should
- (equal "Foo\n\n* X\n\nBar\n"
- (org-test-with-temp-text-in-file "Foo\nBar"
- (forward-line)
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" entry (file ,file) "* X"
- :immediate-finish t :empty-lines 1))))
- (org-capture 0 "t")
- (buffer-string))))))
- (ert-deftest test-org-capture/item ()
- "Test `item' type in capture template."
-
- (should
- (equal
- "* A\n- list 1\n- X\n\n\n1. list 2\n"
- (org-test-with-temp-text-in-file "* A\n- list 1\n\n\n1. list 2"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should
- (equal
- "Text\n- list 1\n- X\n\n\n1. list 2\n"
- (org-test-with-temp-text-in-file "Text\n- list 1\n\n\n1. list 2"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
-
- (should
- (equal
- "* A\n- skip\n\n\n1. here\n2. X\n"
- (org-test-with-temp-text-in-file "* A\n- skip\n\n\n1. here"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+regexp ,file "here") "1. X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "* A\n- X\n"
- (org-test-with-temp-text-in-file "* A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "* A\n- X\n- 1\n- 2\n"
- (org-test-with-temp-text-in-file "* A\n- 1\n- 2"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"
- :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
-
-
- (should
- (equal
- "* A\n- X\nSome text\n"
- (org-test-with-temp-text-in-file "* A\nSome text"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"
- :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should
- (equal
- "- X\nText\n"
- (org-test-with-temp-text-in-file "Text"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X" :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should
- (equal
- "* A\nSCHEDULED: <2012-03-29 Thu>\n- X\nText\n"
- (org-test-with-temp-text-in-file "* A\nSCHEDULED: <2012-03-29 Thu>\nText"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"
- :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
-
- (should
- (equal
- "* A\n- 1\n - 2\n- X\n"
- (org-test-with-temp-text-in-file "* A\n- 1\n - 2"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+headline ,file "A") "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "* A\n- skip\n - here\n - X\n- skip\n"
- (org-test-with-temp-text-in-file "* A\n- skip\n - here\n- skip"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file+regexp ,file "here") "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "\n- X\n\n\n* H\n"
- (org-test-with-temp-text-in-file "\n* H"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"
- :empty-lines-before 1 :empty-lines-after 2 :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
-
- (should
- (equal
- "- A\n\n- X\nText\n"
- (org-test-with-temp-text-in-file "- A\nText"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X" :empty-lines 1))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should
- (equal
- "Text\n- X\n\n- A\n"
- (org-test-with-temp-text-in-file "Text\n- A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"
- :prepend t :empty-lines 1))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should-not
- (equal
- "- A\n\n\n- X\n"
- (org-test-with-temp-text-in-file "- A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X" :empty-lines 2))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "1. X\n2. A\n"
- (org-test-with-temp-text-in-file "1. A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X" :prepend t))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- " - A\n - X\n"
- (org-test-with-temp-text-in-file " - A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
- (should
- (equal
- " - A\n - X\n Line 2\n"
- (org-test-with-temp-text-in-file " - A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X\n Line 2"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal
- "- A\n- X\n"
- (org-test-with-temp-text-in-file "- A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "X"))))
- (org-capture nil "t")
- (org-capture-finalize))
- (buffer-string))))
-
- (should-not
- (equal
- "- A\n- X\nFoo* H"
- (org-test-with-temp-text-in-file "- A\n* H"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Item" item (file ,file) "- X"))))
- (org-capture nil "t")
- (goto-char (point-max))
- (insert "Foo")
- (org-capture-finalize))
- (buffer-string))))
-
- (should
- (equal "- X\nFoo\n\n- A\n"
- (org-test-with-temp-text-in-file "Foo\n\n- A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" item (file ,file) "- X"
- :immediate-finish t))))
- (org-capture 0 "t")
- (buffer-string)))))
-
- (should
- (equal "\n- X\n\nFoo\n\n- A\n"
- (org-test-with-temp-text-in-file "Foo\n\n- A"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" item (file ,file) "- X"
- :immediate-finish t :empty-lines 1))))
- (org-capture 0 "t")
- (buffer-string))))))
- (ert-deftest test-org-capture/table-line ()
- "Test `table-line' type in capture template."
-
- (should
- (equal "Text
- | a |
- | x |
- | b |
- "
- (org-test-with-temp-text-in-file "Text\n\n| a |\n\n| b |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file) "| x |"
- :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
-
- (should
- (equal "* Foo
- | a |
- * Inbox
- | b |
- | x |
- "
- (org-test-with-temp-text-in-file "* Foo\n| a |\n* Inbox\n| b |\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file+headline ,file "Inbox")
- "| x |" :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
- (should
- (equal "* Inbox
- | a |
- | x |
- | b |
- "
- (org-test-with-temp-text-in-file "* Inbox\n| a |\n\n| b |\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file+headline ,file "Inbox")
- "| x |" :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
-
- (should
- (equal "| a |
- | b |
- | x |
- "
- (org-test-with-temp-text-in-file "| a |\n\n\n| b |\n"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file+function ,file forward-line)
- "| x |" :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
- (should
- (equal "| | |\n|---+---|\n| a | b |\n"
- (org-test-with-temp-text-in-file ""
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file) "| a | b |"
- :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
- (should
- (equal "| 1 |\n| 2 |\n#+TBLFM: \n"
- (org-test-with-temp-text-in-file "| 1 |\n#+TBLFM: "
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| 2 |" :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
- (should
- (equal "| a |\n| x |\n"
- (org-test-with-temp-text-in-file "| a |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t))))
- (org-capture nil "t"))
- (buffer-string))))
-
-
- (should
- (equal "| a |\n|---|\n| x |\n| b |\n"
- (org-test-with-temp-text-in-file "| a |\n|---|\n| b |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t :prepend t))))
- (org-capture nil "t"))
- (buffer-string))))
- (should
- (equal "| x |\n| a |\n"
- (org-test-with-temp-text-in-file "| a |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t :prepend t))))
- (org-capture nil "t"))
- (buffer-string))))
-
- (should
- (equal "| a |\n|---|\n| b |\n| x |\n|---|\n| c |\n"
- (org-test-with-temp-text-in-file "| a |\n|---|\n| b |\n|---|\n| c |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t :table-line-pos "II-1"))))
- (org-capture nil "t"))
- (buffer-string))))
- (should
- (equal "| a |\n|---|\n| x |\n| b |\n|---|\n| c |\n"
- (org-test-with-temp-text-in-file "| a |\n|---|\n| b |\n|---|\n| c |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t :table-line-pos "I+1"))))
- (org-capture nil "t"))
- (buffer-string))))
-
- (should-error
- (org-test-with-temp-text-in-file "| a |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| x |" :immediate-finish t :table-line-pos "II+99"))))
- (org-capture nil "t")
- t)))
-
- (should
- (equal
- '(("@3$1" . "9"))
- (org-test-with-temp-text-in-file "| 1 |\n|---|\n| 9 |\n#+tblfm: @2$1=9"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| 2 |" :immediate-finish t :table-line-pos "I-1"))))
- (org-capture nil "t")
- (org-table-get-stored-formulas)))))
- (should
- (equal
- '(("@4$1" . "9"))
- (org-test-with-temp-text-in-file "| 1 |\n|---|\n| 9 |\n#+tblfm: @2$1=9"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| 2 |\n| 3 |" :immediate-finish t :table-line-pos "I-1"))))
- (org-capture nil "t")
- (org-table-get-stored-formulas)))))
-
- (should-not
- (equal
- '(("@3$1" . "9"))
- (org-test-with-temp-text-in-file "| 1 |\n|---|\n| 9 |\n#+tblfm: @2$1=9"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Table" table-line (file ,file)
- "| 2 |" :immediate-finish t))))
- (org-capture nil "t")
- (org-table-get-stored-formulas)))))
-
- (should
- (equal "| |\n|---|\n| B |\nFoo\n\n| A |\n"
- (org-test-with-temp-text-in-file "Foo\n\n| A |"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Test" table-line (file ,file) "| B |"
- :immediate-finish t))))
- (org-capture 0 "t")
- (buffer-string))))))
- (ert-deftest test-org-capture/plain ()
- "Test `plain' type in capture template."
-
- (should
- (equal "Some text.\nFoo\n"
- (org-test-with-temp-text-in-file "Some text."
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file ,file) "Foo"
- :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string)))))
- (should
- (equal "Foo\nSome text.\n"
- (org-test-with-temp-text-in-file "Some text."
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file ,file) "Foo"
- :immediate-finish t :prepend t))))
- (org-capture nil "t")
- (buffer-string)))))
-
-
-
- (should
- (equal "* A\nSCHEDULED: <2012-03-29 Thu>\nSome text.\nFoo\n* B\n"
- (org-test-with-temp-text-in-file
- "* A\nSCHEDULED: <2012-03-29 Thu>\nSome text.\n* B"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file+headline ,file "A") "Foo"
- :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string)))))
- (should
- (equal "* A\nSCHEDULED: <2012-03-29 Thu>\nFoo\nSome text.\n* B\n"
- (org-test-with-temp-text-in-file
- "* A\nSCHEDULED: <2012-03-29 Thu>\nSome text.\n* B"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file+headline ,file "A") "Foo"
- :immediate-finish t :prepend t))))
- (org-capture nil "t")
- (buffer-string)))))
-
-
- (should
- (equal "A\nX\nB\n"
- (org-test-with-temp-text-in-file "AB"
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file+function ,file forward-char) "X"
- :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string)))))
-
- (should
- (equal ""
- (org-test-with-temp-text-in-file ""
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file ,file) ""
- :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string)))))
-
- (should
- (equal "SUCCESS\n"
- (org-test-with-temp-text-in-file ""
- (let* ((file (buffer-file-name))
- (org-capture-templates
- `(("t" "Text" plain (file ,file) "SUCCESS"
- :unnarrowed t :immediate-finish t))))
- (org-capture nil "t")
- (buffer-string))))))
- (provide 'test-org-capture)
|