applied suggested patch with PERL_OBJECT tweaks
[p5sagit/p5-mst-13.2.git] / t / op / range.t
CommitLineData
a687059c 1#!./perl
2
89ea2908 3print "1..10\n";
a687059c 4
5print join(':',1..5) eq '1:2:3:4:5' ? "ok 1\n" : "not ok 1\n";
6
7@foo = (1,2,3,4,5,6,7,8,9);
8@foo[2..4] = ('c','d','e');
9
10print join(':',@foo[$foo[0]..5]) eq '2:c:d:e:6' ? "ok 2\n" : "not ok 2\n";
11
12@bar[2..4] = ('c','d','e');
13print join(':',@bar[1..5]) eq ':c:d:e:' ? "ok 3\n" : "not ok 3\n";
14
15($a,@bcd[0..2],$e) = ('a','b','c','d','e');
16print join(':',$a,@bcd[0..2],$e) eq 'a:b:c:d:e' ? "ok 4\n" : "not ok 4\n";
17
18$x = 0;
19for (1..100) {
20 $x += $_;
21}
22print $x == 5050 ? "ok 5\n" : "not ok 5 $x\n";
23
24$x = 0;
25for ((100,2..99,1)) {
26 $x += $_;
27}
28print $x == 5050 ? "ok 6\n" : "not ok 6 $x\n";
0f85fab0 29
30$x = join('','a'..'z');
31print $x eq 'abcdefghijklmnopqrstuvwxyz' ? "ok 7\n" : "not ok 7 $x\n";
32
33@x = 'A'..'ZZ';
34print @x == 27 * 26 ? "ok 8\n" : "not ok 8\n";
89ea2908 35
36@x = '09' .. '08'; # should produce '09', '10',... '99' (strange but true)
37print "not " unless join(",", @x) eq
38 join(",", map {sprintf "%02d",$_} 9..99);
39print "ok 9\n";
40
41# same test with foreach (which is a separate implementation)
42@y = ();
43foreach ('09'..'08') {
44 push(@y, $_);
45}
46print "not " unless join(",", @y) eq join(",", @x);
47print "ok 10\n";
48