summaryrefslogtreecommitdiffstats
path: root/t/010-random-permutation.t
diff options
context:
space:
mode:
Diffstat (limited to 't/010-random-permutation.t')
-rw-r--r--t/010-random-permutation.t15
1 files changed, 0 insertions, 15 deletions
diff --git a/t/010-random-permutation.t b/t/010-random-permutation.t
deleted file mode 100644
index 4adcda3..0000000
--- a/t/010-random-permutation.t
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More tests => 51;
-use Test::Deep;
-use Games::Word qw/random_permutation/;
-
-is(random_permutation(""), "", "testing permutation of empty string");
-
-for my $word (qw/foo bar baz quux blah/) {
- for (1..10) {
- cmp_deeply([split //, random_permutation $word], bag(split //, $word),
- "random tests");
- }
-}