aboutsummaryrefslogtreecommitdiff
path: root/test-org-link-edit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-02-14 02:15:07 -0500
committerKyle Meyer <kyle@kyleam.com>2015-02-14 02:15:07 -0500
commitaf3a3a69f63d138477201e742fb34f0e2f445900 (patch)
treec81350ee11de52673262be4d46776ceac0bbbf3c /test-org-link-edit.el
parentcb6c7d8b3feeb869dc7218f9686461d2ede3aaac (diff)
downloadorg-link-edit-af3a3a69f63d138477201e742fb34f0e2f445900.tar.gz
Trim only whitespace from slurped strings
Diffstat (limited to 'test-org-link-edit.el')
-rw-r--r--test-org-link-edit.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/test-org-link-edit.el b/test-org-link-edit.el
index b778dbd..53c4d87 100644
--- a/test-org-link-edit.el
+++ b/test-org-link-edit.el
@@ -105,6 +105,14 @@ website is"
"\[\[http://orgmode.org/\]\]website"
(org-link-edit-forward-slurp-word 1)
(buffer-string))))
+ ;; Slurp word beginning with non-word, non-whitespace character.
+ (should
+ (string=
+ "\[\[http://orgmode.org/\]\[-website\]\]"
+ (org-test-with-temp-text
+ "\[\[http://orgmode.org/\]\]-website"
+ (org-link-edit-forward-slurp-word 1)
+ (buffer-string))))
;; Slurp beyond the number of present words.
(should-error
(org-test-with-temp-text
@@ -172,6 +180,14 @@ website is"
"Here is<point>\[\[http://orgmode.org/\]\] Org's website"
(org-link-edit-backward-slurp-word 1)
(buffer-string))))
+ ;; Slurp word ending with non-word, non-whitespace character.
+ (should
+ (string=
+ "Here \[\[http://orgmode.org/\]\[is-\]\] Org's website"
+ (org-test-with-temp-text
+ "Here is-<point>\[\[http://orgmode.org/\]\] Org's website"
+ (org-link-edit-backward-slurp-word 1)
+ (buffer-string))))
;; Slurp beyond the number of present words.
(should-error
(org-test-with-temp-text