#! /usr/bin/env perl # -*- perl -*-
is_deeply [strip_suffix
'simple.txt'
], [
'simple'
,
'txt'
],
'simple.txt'
;
is_deeply [strip_suffix
'index.html.utf8.de'
], [
'index'
,
'html'
,
'utf8'
,
'de'
],
'index.html.utf8.de'
;
is_deeply [strip_suffix
'version-0.2-released.md'
], [
'version-0.2-released'
,
'md'
],
'version-0.2-released.md'
;
is_deeply [strip_suffix
'foo.bar.stop-here.foo.bar.txt'
], [
'foo.bar.stop-here'
,
'foo'
,
'bar'
,
'txt'
],
'foo.bar.stop-here.foo.bar.txt'
;
is_deeply [strip_suffix
'simple..txt'
], [
'simple'
,
'txt'
],
'simple..txt'
;
is_deeply [strip_suffix
'README'
], [
'README'
],
'README'
;
is_deeply [strip_suffix
'dot.'
], [
'dot'
],
'dot.'
;
is_deeply [strip_suffix
'dotdot..'
], [
'dotdot'
],
'dotdot..'
;
is_deeply [strip_suffix
'dot.no-suffix'
], [
'dot.no-suffix'
],
'dot.no-suffix'
;
is_deeply [strip_suffix
'co.ll...a...p...s...e...'
], [
'co'
,
'll'
,
'a'
,
'p'
,
's'
,
'e'
],
'co.ll...a...p...s...e...'
;