blob: 7b297cf95bf6a263e010a3cd7f69e0ed0f26f8c1 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!./perl
print "1..8\n";
use Text::Abbrev;
print "ok 1\n";
# old style as reference
local(%x);
my @z = qw(list edit send abort gripe listen);
abbrev(*x, @z);
my $r = join ':', sort keys %x;
print "not " if exists $x{'l'} ||
exists $x{'li'} ||
exists $x{'lis'};
print "ok 2\n";
print "not " unless $x{'list'} eq 'list' &&
$x{'liste'} eq 'listen' &&
$x{'listen'} eq 'listen';
print "ok 3\n";
print "not " unless $x{'a'} eq 'abort' &&
$x{'ab'} eq 'abort' &&
$x{'abo'} eq 'abort' &&
$x{'abor'} eq 'abort' &&
$x{'abort'} eq 'abort';
print "ok 4\n";
my $test = 5;
# wantarray
my %y = abbrev @z;
my $s = join ':', sort keys %y;
print (($r eq $s)?"ok $test\n":"not ok $test\n"); $test++;
my $y = abbrev @z;
$s = join ':', sort keys %$y;
print (($r eq $s)?"ok $test\n":"not ok $test\n"); $test++;
%y = ();
abbrev \%y, @z;
$s = join ':', sort keys %y;
print (($r eq $s)?"ok $test\n":"not ok $test\n"); $test++;
# warnings safe with zero arguments
my $notok;
$^W = 1;
$SIG{__WARN__} = sub { $notok++ };
abbrev();
print ($notok ? "not ok $test\n" : "ok $test\n"); $test++;
|