summaryrefslogtreecommitdiff
path: root/t/lib/u-reduce.t
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/u-reduce.t')
-rwxr-xr-xt/lib/u-reduce.t30
1 files changed, 0 insertions, 30 deletions
diff --git a/t/lib/u-reduce.t b/t/lib/u-reduce.t
deleted file mode 100755
index 063e0b791b..0000000000
--- a/t/lib/u-reduce.t
+++ /dev/null
@@ -1,30 +0,0 @@
-BEGIN {
- chdir 't' if -d 't';
- @INC = '../lib';
- require Config; import Config;
- if ($Config{extensions} !~ /\bList\/Util\b/) {
- print "1..0 # Skip: List::Util was not built\n";
- exit 0;
- }
-}
-
-use List::Util qw(reduce min);
-
-print "1..5\n";
-
-print "not " if defined reduce {};
-print "ok 1\n";
-
-print "not " unless 9 == reduce { $a / $b } 756,3,7,4;
-print "ok 2\n";
-
-print "not " unless 9 == reduce { $a / $b } 9;
-print "ok 3\n";
-
-@a = map { rand } 0 .. 20;
-print "not " unless min(@a) == reduce { $a < $b ? $a : $b } @a;
-print "ok 4\n";
-
-@a = map { pack("C", int(rand(256))) } 0 .. 20;
-print "not " unless join("",@a) eq reduce { $a . $b } @a;
-print "ok 5\n";