File: iod-03filenames.t

package info (click to toggle)
libscalar-does-perl 0.203-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 296 kB
  • sloc: perl: 374; makefile: 2
file content (68 lines) | stat: -rw-r--r-- 1,359 bytes parent folder | download | duplicates (6)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
=head1 PURPOSE

Check IO::Detect can detect filename-like things.

This file originally formed part of the IO-Detect test suite.

=head1 AUTHOR

Toby Inkster E<lt>tobyink@cpan.orgE<gt>.

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2012-2014 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

use strict;
use warnings;
use Test::More;

use IO::Detect qw( is_filename FileName );

my @filenames = qw(
	0
	/dev/null
	readme.txt
	README
	C:\Windows\Notepad.exe
	C:\Windows\
);

{
	package Local::Stringifier;
	use overload q[""], sub { $_[0][0] };
	sub new { bless \@_, shift }
}

push @filenames, Local::Stringifier->new(__FILE__);

ok !is_filename([]), 'is_filename ARRAY';
ok !is_filename(undef), 'is_filename undef';
ok !is_filename(''), 'is_filename empty string';
ok !is_filename(<<'FILENAME'), 'is_filename multiline';
multi
line
string
FILENAME

if ($] >= 5.010 and $] < 5.017)
{
	eval q[
		use IO::Detect -smartmatch, -default;
		
		ok(is_filename, "is_filename $_") for @filenames;

		ok not([]    ~~ FileName), 'ARRAY ~~ FileName';
		ok not(undef ~~ FileName), 'undef ~~ FileName';
		ok not(''    ~~ FileName), 'empty string ~~ FileName';

		for (@filenames)
			{ ok $_ ~~ FileName, "$_ ~~ FileName" };
	];
}

done_testing();