summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-11-17 00:10:43 -0600
committerJesse Luehrs <doy@tozt.net>2009-11-17 00:10:43 -0600
commit5c83076fed12c431a9345ba9feb41047966428c4 (patch)
tree8eb49de8e549aaa03f2e17f33fe006c2954dc6d0 /t
parentadf1468b40da591d6eb27e03125ce3dfdf08977a (diff)
downloadgames-word-5c83076fed12c431a9345ba9feb41047966428c4.tar.gz
games-word-5c83076fed12c431a9345ba9feb41047966428c4.zip
convert to #!/usr/bin/env perl everywhere
Diffstat (limited to 't')
-rw-r--r--t/000-load.t2
-rw-r--r--t/001-basic.t2
-rw-r--r--t/002-system-wordlist.t2
-rw-r--r--t/003-array-wordlist.t2
-rw-r--r--t/004-system-wordlist-nocache.t2
-rw-r--r--t/010-random-permutation.t2
-rw-r--r--t/011-is-permutation.t2
-rw-r--r--t/012-shared-letters.t2
-rw-r--r--t/013-random-string-from.t2
-rw-r--r--t/014-substrings.t2
-rw-r--r--t/015-subpermutations.t2
-rw-r--r--t/020-random-word.t2
-rw-r--r--t/021-is-word.t2
-rw-r--r--t/022-random-word-nocache.t2
-rw-r--r--t/023-is-word-nocache.t2
-rw-r--r--t/024-anagrams.t2
-rw-r--r--t/025-subwords.t2
17 files changed, 17 insertions, 17 deletions
diff --git a/t/000-load.t b/t/000-load.t
index 6da1ee9..dfe613f 100644
--- a/t/000-load.t
+++ b/t/000-load.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 2;
diff --git a/t/001-basic.t b/t/001-basic.t
index e325ff3..e939d77 100644
--- a/t/001-basic.t
+++ b/t/001-basic.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 2;
diff --git a/t/002-system-wordlist.t b/t/002-system-wordlist.t
index ee83e46..336d2d4 100644
--- a/t/002-system-wordlist.t
+++ b/t/002-system-wordlist.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 2;
diff --git a/t/003-array-wordlist.t b/t/003-array-wordlist.t
index 148f761..b752080 100644
--- a/t/003-array-wordlist.t
+++ b/t/003-array-wordlist.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 4;
diff --git a/t/004-system-wordlist-nocache.t b/t/004-system-wordlist-nocache.t
index 39b7dd4..368229c 100644
--- a/t/004-system-wordlist-nocache.t
+++ b/t/004-system-wordlist-nocache.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 4;
diff --git a/t/010-random-permutation.t b/t/010-random-permutation.t
index cbfe275..4adcda3 100644
--- a/t/010-random-permutation.t
+++ b/t/010-random-permutation.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 51;
diff --git a/t/011-is-permutation.t b/t/011-is-permutation.t
index 96e959a..e6e1abe 100644
--- a/t/011-is-permutation.t
+++ b/t/011-is-permutation.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 20;
diff --git a/t/012-shared-letters.t b/t/012-shared-letters.t
index f3160b1..e9fb431 100644
--- a/t/012-shared-letters.t
+++ b/t/012-shared-letters.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
diff --git a/t/013-random-string-from.t b/t/013-random-string-from.t
index 190f1a5..ef8bc61 100644
--- a/t/013-random-string-from.t
+++ b/t/013-random-string-from.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 23;
diff --git a/t/014-substrings.t b/t/014-substrings.t
index 542ad64..e61d264 100644
--- a/t/014-substrings.t
+++ b/t/014-substrings.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
diff --git a/t/015-subpermutations.t b/t/015-subpermutations.t
index 439f7f1..36e57d8 100644
--- a/t/015-subpermutations.t
+++ b/t/015-subpermutations.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
diff --git a/t/020-random-word.t b/t/020-random-word.t
index 71b1959..b642c27 100644
--- a/t/020-random-word.t
+++ b/t/020-random-word.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 6;
diff --git a/t/021-is-word.t b/t/021-is-word.t
index 3ed6bc2..2c6045f 100644
--- a/t/021-is-word.t
+++ b/t/021-is-word.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 10;
diff --git a/t/022-random-word-nocache.t b/t/022-random-word-nocache.t
index 61fad0d..08ed1fc 100644
--- a/t/022-random-word-nocache.t
+++ b/t/022-random-word-nocache.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 5;
diff --git a/t/023-is-word-nocache.t b/t/023-is-word-nocache.t
index 47ada06..8555fbd 100644
--- a/t/023-is-word-nocache.t
+++ b/t/023-is-word-nocache.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 21;
diff --git a/t/024-anagrams.t b/t/024-anagrams.t
index 9cbabc1..d71e908 100644
--- a/t/024-anagrams.t
+++ b/t/024-anagrams.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;
diff --git a/t/025-subwords.t b/t/025-subwords.t
index 4941a19..c484788 100644
--- a/t/025-subwords.t
+++ b/t/025-subwords.t
@@ -1,4 +1,4 @@
-#!perl -T
+#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;