12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- (ert-deftest test-org-pcomplete/prop ()
- "Test property completion behaviour in an Org buffer"
-
-
-
-
-
- (should
- (equal
- "* a\n:PROPERTIES:\n:pname: \n:END:\n* b\n:PROPERTIES:\n:pname: pvalue\n:END:\n"
- (org-test-with-temp-text "* a\n:PROPERTIES:\n:pna<point>\n:END:\n* b\n:PROPERTIES:\n:pname: pvalue\n:END:\n"
- (flet ((y-or-n-p (prompt) (error "Should not be called")))
- (pcomplete))
- (buffer-string)))))
- (provide 'test-org-pcomplete)
- ;;; test-org-pcomplete.el ends here
|