|
@@ -1376,6 +1376,14 @@
|
|
|
(replace-regexp-in-string
|
|
|
"\\( [.A-Za-z]+\\)\\( \\+[0-9][hdmwy]\\)?>" "" (buffer-string)
|
|
|
nil nil 1))))
|
|
|
+ ;; Clone with blank SHIFT argument.
|
|
|
+ (should
|
|
|
+ (string-prefix-p
|
|
|
+ "* H <2012-03-29"
|
|
|
+ (org-test-with-temp-text "* H <2012-03-29 Thu><point>"
|
|
|
+ (org-clone-subtree-with-time-shift 1 "")
|
|
|
+ (buffer-substring-no-properties (line-beginning-position 2)
|
|
|
+ (line-end-position 2)))))
|
|
|
;; Find time stamps before point. If SHIFT is not specified, ask
|
|
|
;; for a time shift.
|
|
|
(should
|
|
@@ -1391,7 +1399,7 @@
|
|
|
(org-test-with-temp-text "* H <2014-03-04 Tue><point>"
|
|
|
(cl-letf (((symbol-function 'read-from-minibuffer)
|
|
|
(lambda (&rest args) "+1d")))
|
|
|
- (org-clone-subtree-with-time-shift 1 "+1d"))
|
|
|
+ (org-clone-subtree-with-time-shift 1))
|
|
|
(buffer-substring-no-properties (line-beginning-position 2)
|
|
|
(line-end-position 2))))))
|
|
|
|