aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/fileio-tests.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/src/fileio-tests.el b/test/src/fileio-tests.el
index 73a7775279a..b1288f943e3 100644
--- a/test/src/fileio-tests.el
+++ b/test/src/fileio-tests.el
@@ -175,8 +175,11 @@ Also check that an encoding error can appear in a symlink."
175 (aset string 2 255) 175 (aset string 2 255)
176 (should (not (multibyte-string-p string))) 176 (should (not (multibyte-string-p string)))
177 (should (equal (directory-append "fóo" string) "fóo/aa\377aa"))) 177 (should (equal (directory-append "fóo" string) "fóo/aa\377aa")))
178 (should-error (directory-append "foo" "")) 178 (should (equal (directory-append "foo") "foo"))
179 (should-error (directory-append "" "bar")) 179 (should (equal (directory-append "foo/") "foo/"))
180 (should-error (directory-append "" ""))) 180 (should (equal (directory-append "foo" "") "foo"))
181 (should (equal (directory-append "foo" "" "" "" nil) "foo"))
182 (should (equal (directory-append "" "bar") "bar"))
183 (should (equal (directory-append "" "") "")))
181 184
182;;; fileio-tests.el ends here 185;;; fileio-tests.el ends here