summaryrefslogtreecommitdiffstats
path: root/tests/018
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-07-10 08:27:40 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-07-10 08:27:40 -0700
commit44fc04addc852cd4d0bbfa53a44b69679aaa29c2 (patch)
tree98c859e436bf3df36a3f5f5d1ec39387d6618372 /tests/018
parentfa1b64f6d0f145cfa059fc9cdb1427c661aef387 (diff)
downloadtxr-44fc04addc852cd4d0bbfa53a44b69679aaa29c2.tar.gz
txr-44fc04addc852cd4d0bbfa53a44b69679aaa29c2.tar.bz2
txr-44fc04addc852cd4d0bbfa53a44b69679aaa29c2.zip
suffix functions: new test cases.
* tests/018/path.tl: New cases covering dotted name situation, which is not a suffix, but can have a suffix.
Diffstat (limited to 'tests/018')
-rw-r--r--tests/018/path.tl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/018/path.tl b/tests/018/path.tl
index 937d2d6e..aaaa6e11 100644
--- a/tests/018/path.tl
+++ b/tests/018/path.tl
@@ -12,6 +12,7 @@
(short-suffix "a.b.") "."
(short-suffix ".c") nil
(short-suffix "a.c") ".c"
+ (short-suffix ".a.c") ".c"
(short-suffix "a.b.c") ".c"
(short-suffix "foo.txt.gz") ".gz"
(short-suffix "txt.gz") ".gz"
@@ -34,7 +35,8 @@
(long-suffix ".gz") nil
(long-suffix ".txt.gz") ".gz"
(long-suffix "/.txt.gz") ".gz"
- (long-suffix "a/.txt.gz") ".gz")
+ (long-suffix "a/.txt.gz") ".gz"
+ (long-suffix "a/.txt.tar.gz") ".tar.gz")
(mtest
(short-suffix "/") nil