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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#!perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require "./test.pl";
}
plan(tests => 39);
sub f($$_) { my $x = shift; is("@_", $x) }
$foo = "FOO";
my $bar = "BAR";
$_ = 42;
f("FOO xy", $foo, "xy");
f("BAR zt", $bar, "zt");
f("FOO 42", $foo);
f("BAR 42", $bar);
f("y 42", substr("xy",1,1));
f("1 42", ("abcdef" =~ /abc/));
f("not undef 42", $undef || "not undef");
f(" 42", -f "no_such_file");
f("FOOBAR 42", ($foo . $bar));
f("FOOBAR 42", ($foo .= $bar));
f("FOOBAR 42", $foo);
eval q{ f("foo") };
like( $@, qr/Not enough arguments for main::f at/ );
eval q{ f(1,2,3,4) };
like( $@, qr/Too many arguments for main::f at/ );
{
my $_ = "quarante-deux";
$foo = "FOO";
$bar = "BAR";
f("FOO quarante-deux", $foo);
f("BAR quarante-deux", $bar);
f("y quarante-deux", substr("xy",1,1));
f("1 quarante-deux", ("abcdef" =~ /abc/));
f("not undef quarante-deux", $undef || "not undef");
f(" quarante-deux", -f "no_such_file");
f("FOOBAR quarante-deux", ($foo . $bar));
f("FOOBAR quarante-deux", ($foo .= $bar));
f("FOOBAR quarante-deux", $foo);
}
&f(""); # no error
sub g(_) { is(shift, $expected) }
$expected = "foo";
g("foo");
g($expected);
$_ = $expected;
g();
g;
undef $expected; &g; # $_ not passed
{ $expected = my $_ = "bar"; g() }
eval q{ sub wrong1 (_$); wrong1(1,2) };
like( $@, qr/Malformed prototype for main::wrong1/, 'wrong1' );
eval q{ sub wrong2 ($__); wrong2(1,2) };
like( $@, qr/Malformed prototype for main::wrong2/, 'wrong2' );
sub opt ($;_) { is($_[0], "seen"); ok(!defined $_[1], "; has precedence over _") }
opt("seen");
sub unop (_) { is($_[0], 11, "unary op") }
unop 11, 22; # takes only the first parameter into account
sub mymkdir (_;$) { is("@_", $expected, "mymkdir") }
$expected = $_ = "mydir"; mymkdir();
mymkdir($expected = "foo");
$expected = "foo 493"; mymkdir foo => 0755;
# $_ says modifiable, it's not passed by copy
sub double(_) { $_[0] *= 2 }
$_ = 21;
double();
is( $_, 42, '$_ is modifiable' );
{
my $_ = 22;
double();
is( $_, 44, 'my $_ is modifiable' );
}
|