summaryrefslogtreecommitdiff
path: root/t/basename.t
blob: 58a0bdaf93a09373d9fec2cb305ea4c2518c4110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use 5.008001;
use strict;
use warnings;
use Test::More 0.96;

use lib 't/lib';
use TestUtils qw/exception/;

use Path::Tiny;
use Cwd;

my $IS_WIN32 = $^O eq 'MSWin32';

my @cases = (
    [ 'foo.txt', [ '.txt',    '.png' ],    'foo' ],
    [ 'foo.png', [ '.txt',    '.png' ],    'foo' ],
    [ 'foo.txt', [ qr/\.txt/, qr/\.png/ ], 'foo' ],
    [ 'foo.png', [ qr/\.txt/, qr/\.png/ ], 'foo' ],
    [ 'foo.txt', ['.jpeg'], 'foo.txt' ],
    [ 'foo/.txt/bar.txt', [ qr/\.txt/, qr/\.png/ ], 'bar' ],
);

for my $c (@cases) {
    my ( $input, $args, $result ) = @$c;
    my $path = path($input);
    my $base = $path->basename(@$args);
    is( $base, $result, "$path -> $result" );
}

done_testing;
#
# This file is part of Path-Tiny
#
# This software is Copyright (c) 2014 by David Golden.
#
# This is free software, licensed under:
#
#   The Apache License, Version 2.0, January 2004
#