summaryrefslogtreecommitdiff
path: root/test/f-paths-test.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/f-paths-test.el')
-rw-r--r--test/f-paths-test.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/f-paths-test.el b/test/f-paths-test.el
index f6d6418..12852d2 100644
--- a/test/f-paths-test.el
+++ b/test/f-paths-test.el
@@ -82,6 +82,10 @@
;; exception, hence this will fail.
(f-expand "foo:" "/"))
+(ert-deftest f-expand-test/directory-name ()
+ (with-default-directory
+ (should (equal (f-expand "foo/" "/other/") "/other/foo/"))))
+
;;;; f-filename
@@ -117,7 +121,7 @@
(should
(equal
(f-dirname (f-expand "foo/bar/baz" f-test/playground-path))
- (f-expand "foo/bar/" f-test/playground-path)))))
+ (f-expand "foo/bar" f-test/playground-path)))))
(ert-deftest f-dirname-test/file-absolute ()
(with-playground
@@ -126,7 +130,7 @@
(should
(equal
(f-dirname (f-expand "foo/bar/baz/qux.txt" f-test/playground-path))
- (f-expand "foo/bar/baz/" f-test/playground-path)))))
+ (f-expand "foo/bar/baz" f-test/playground-path)))))
(ert-deftest f-dirname-test/file-with-ending-slash ()
(with-playground