sync a bunch of files with Test::Simple 0.86
David Mitchell [Sat, 6 Jun 2009 16:10:50 +0000 (17:10 +0100)]
(the $Id$ changes didn't get picked up when blead was last synced with
CPAN)

103 files changed:
lib/Test/Builder.pm
lib/Test/Builder/Module.pm
lib/Test/Builder/Tester.pm
lib/Test/Builder/Tester/Color.pm
lib/Test/More.pm
lib/Test/Simple.pm
lib/Test/Simple/README
lib/Test/Simple/TODO
lib/Test/Simple/t/00test_harness_check.t
lib/Test/Simple/t/BEGIN_require_ok.t
lib/Test/Simple/t/BEGIN_use_ok.t
lib/Test/Simple/t/Builder/Builder.t
lib/Test/Simple/t/Builder/carp.t
lib/Test/Simple/t/Builder/create.t
lib/Test/Simple/t/Builder/curr_test.t
lib/Test/Simple/t/Builder/details.t
lib/Test/Simple/t/Builder/has_plan.t
lib/Test/Simple/t/Builder/has_plan2.t
lib/Test/Simple/t/Builder/is_fh.t
lib/Test/Simple/t/Builder/maybe_regex.t
lib/Test/Simple/t/Builder/no_diag.t
lib/Test/Simple/t/Builder/no_ending.t
lib/Test/Simple/t/Builder/no_header.t
lib/Test/Simple/t/Builder/ok_obj.t
lib/Test/Simple/t/Builder/output.t
lib/Test/Simple/t/Builder/reset.t
lib/Test/Simple/t/Builder/try.t
lib/Test/Simple/t/More.t
lib/Test/Simple/t/Tester/tbt_01basic.t
lib/Test/Simple/t/Tester/tbt_02fhrestore.t
lib/Test/Simple/t/Tester/tbt_03die.t
lib/Test/Simple/t/Tester/tbt_04line_num.t
lib/Test/Simple/t/Tester/tbt_05faildiag.t
lib/Test/Simple/t/Tester/tbt_06errormess.t
lib/Test/Simple/t/Tester/tbt_07args.t
lib/Test/Simple/t/bad_plan.t
lib/Test/Simple/t/bail_out.t
lib/Test/Simple/t/buffer.t
lib/Test/Simple/t/circular_data.t
lib/Test/Simple/t/cmp_ok.t
lib/Test/Simple/t/diag.t
lib/Test/Simple/t/died.t
lib/Test/Simple/t/dont_overwrite_die_handler.t
lib/Test/Simple/t/eq_set.t
lib/Test/Simple/t/exit.t
lib/Test/Simple/t/explain.t
lib/Test/Simple/t/extra.t
lib/Test/Simple/t/extra_one.t
lib/Test/Simple/t/fail-like.t
lib/Test/Simple/t/fail-more.t
lib/Test/Simple/t/fail.t
lib/Test/Simple/t/fail_one.t
lib/Test/Simple/t/filehandles.t
lib/Test/Simple/t/fork.t
lib/Test/Simple/t/harness_active.t
lib/Test/Simple/t/import.t
lib/Test/Simple/t/is_deeply_dne_bug.t
lib/Test/Simple/t/is_deeply_fail.t
lib/Test/Simple/t/is_deeply_with_threads.t
lib/Test/Simple/t/lib/Dummy.pm
lib/Test/Simple/t/lib/MyOverload.pm
lib/Test/Simple/t/lib/NoExporter.pm
lib/Test/Simple/t/missing.t
lib/Test/Simple/t/no_plan.t
lib/Test/Simple/t/no_tests.t
lib/Test/Simple/t/note.t
lib/Test/Simple/t/overload.t
lib/Test/Simple/t/overload_threads.t
lib/Test/Simple/t/plan.t
lib/Test/Simple/t/plan_bad.t
lib/Test/Simple/t/plan_is_noplan.t
lib/Test/Simple/t/plan_no_plan.t
lib/Test/Simple/t/plan_shouldnt_import.t
lib/Test/Simple/t/plan_skip_all.t
lib/Test/Simple/t/require_ok.t
lib/Test/Simple/t/simple.t
lib/Test/Simple/t/skip.t
lib/Test/Simple/t/skipall.t
lib/Test/Simple/t/tbm_doesnt_set_exported_to.t
lib/Test/Simple/t/thread_taint.t
lib/Test/Simple/t/threads.t
lib/Test/Simple/t/todo.t
lib/Test/Simple/t/undef.t
lib/Test/Simple/t/use_ok.t
lib/Test/Simple/t/useing.t
lib/Test/Simple/t/utf8.t
lib/Test/Tutorial.pod
t/lib/Dev/Null.pm
t/lib/Test/Simple/Catch.pm
t/lib/Test/Simple/sample_tests/death.plx
t/lib/Test/Simple/sample_tests/death_in_eval.plx
t/lib/Test/Simple/sample_tests/death_with_handler.plx
t/lib/Test/Simple/sample_tests/exit.plx
t/lib/Test/Simple/sample_tests/extras.plx
t/lib/Test/Simple/sample_tests/five_fail.plx
t/lib/Test/Simple/sample_tests/last_minute_death.plx
t/lib/Test/Simple/sample_tests/one_fail.plx
t/lib/Test/Simple/sample_tests/pre_plan_death.plx
t/lib/Test/Simple/sample_tests/require.plx
t/lib/Test/Simple/sample_tests/success.plx
t/lib/Test/Simple/sample_tests/too_few.plx
t/lib/Test/Simple/sample_tests/too_few_fail.plx
t/lib/Test/Simple/sample_tests/two_fail.plx

index b387444..87f23f2 100644 (file)
@@ -1,5 +1,5 @@
 package Test::Builder;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Builder.pm 67223 2008-10-15T03:08:18.888155Z schwern  $
+# $Id$
 
 use 5.006;
 use strict;
index 4ccdf09..166b9da 100644 (file)
@@ -1,5 +1,5 @@
 package Test::Builder::Module;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Builder/Module.pm 67223 2008-10-15T03:08:18.888155Z schwern  $
+# $Id$
 
 use strict;
 
index 8b1f46b..d0bfc3f 100644 (file)
@@ -1,5 +1,5 @@
 package Test::Builder::Tester;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Builder/Tester.pm 67223 2008-10-15T03:08:18.888155Z schwern  $
+# $Id$
 
 use strict;
 our $VERSION = "1.18";
index 27fc868..d333b2f 100644 (file)
@@ -1,5 +1,5 @@
 package Test::Builder::Tester::Color;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Builder/Tester/Color.pm 67132 2008-10-01T01:11:04.501643Z schwern  $
+# $Id$
 
 use strict;
 
index 2ccd314..875e40a 100644 (file)
@@ -1,5 +1,5 @@
 package Test::More;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/More.pm 67223 2008-10-15T03:08:18.888155Z schwern  $
+# $Id$
 
 use 5.006;
 use strict;
index a7924cc..cef0411 100644 (file)
@@ -1,5 +1,5 @@
 package Test::Simple;
-# $Id: /mirror/googlecode/test-more-trunk/lib/Test/Simple.pm 67223 2008-10-15T03:08:18.888155Z schwern  $
+# $Id$
 
 use 5.004;
 
index d0e9b7f..114aa26 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/README 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 This is the README file for Test::Simple, basic utilities for 
 writing tests, by Michael G Schwern <schwern@pobox.com>.
 
index edfefa1..a490688 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/TODO 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 See https://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Simple plus here's
 a few more I haven't put in RT yet.
 
index ee5c11a..0504be3 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/00test_harness_check.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # A test to make sure the new Test::Harness was installed properly.
 
index a06ca1b..c3e4cca 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/BEGIN_require_ok.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index d6baefe..aa428d5 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/BEGIN_use_ok.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # [rt.cpan.org 28345]
 #
index 24e395c..ce53097 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/Builder.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index a390aa6..fb7208a 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Builder/carp.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index d923227..d66ee06 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/create.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 #!perl -w
 
index 9607db3..ec54980 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/curr_test.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 # Dave Rolsky found a bug where if current_test() is used and no
 # tests are run via Test::Builder it will blow up.
index 0f3c31d..82f74c2 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/details.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 9c8ae59..4eecbd0 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/has_plan.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index eaceeca..c4aca0f 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/has_plan2.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index ab8b887..a492f01 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/is_fh.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 5741220..c352c82 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/maybe_regex.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 07cb3ba..f861984 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/no_diag.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 use Test::More 'no_diag', tests => 2;
 
index fe3edec..3b3077d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/Builder/no_ending.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 use Test::Builder;
 
 BEGIN {
index 3992f0f..a12bec5 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/Builder/no_header.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 9dc658a..f5af1f1 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/ok_obj.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 # Testing to make sure Test::Builder doesn't accidentally store objects
 # passed in as test arguments.
index 4dc0d2e..d49d02a 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/output.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 5284fb3..e655725 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/reset.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 # Test Test::Builder->reset;
 
index 37e0cdf..fd61ddd 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/Builder/try.t 60332 2008-09-09T12:24:03.060291Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index c84bf2c..73d71d8 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/More.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 575a92b..f40ab5e 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_01basic.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::Builder::Tester tests => 9;
 use Test::More;
index 398ac0e..b6ef7e0 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_02fhrestore.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::Builder::Tester tests => 4;
 use Test::More;
index 5657f2a..8c7d30a 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_03die.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::Builder::Tester tests => 1;
 use Test::More;
index 1988b2d..f18ed01 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_04line_num.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::More tests => 3;
 use Test::Builder::Tester;
index ffeb5d5..def6735 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_05faildiag.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::Builder::Tester tests => 5;
 use Test::More;
index da3bbef..c4e6632 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_06errormess.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::More tests => 8;
 use Symbol;
index ac5f414..8d104b7 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/Tester/tbt_07args.t 60331 2008-09-09T12:17:12.607612Z schwern  $
+# $Id$
 
 use Test::More tests => 18;
 use Symbol;
index 10207b4..1d4e50d 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/bad_plan.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 4af221b..58bcf47 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/bail_out.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 1fdc930..04e92b9 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: /mirror/googlecode/test-more/t/buffer.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 4f41ae1..ce23e0b 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/circular_data.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # Test is_deeply and friends with circular data structures [rt.cpan.org 7289]
 
index 4c2f900..031940e 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/cmp_ok.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index c6276d9..91ef58f 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/diag.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 6e4d40c..2a40d01 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/died.t 60310 2008-09-07T23:47:22.837229Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 4c0968f..03609a8 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/dont_overwrite_die_handler.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index bd04f78..b090373 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/eq_set.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index fe53cbb..6c6945c 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/exit.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # Can't use Test.pm, that's a 5.005 thing.
 package My::Test;
index f623ef4..6b67b6c 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/explain.t 60308 2008-09-07T22:36:18.175234Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 0fcc0ee..778284d 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/extra.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 211d97b..90ba9ab 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/extra_one.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 09b82a5..d1a51d4 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/fail-like.t 60310 2008-09-07T23:47:22.837229Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 32b0701..4e515c5 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/fail-more.t 60310 2008-09-07T23:47:22.837229Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 70a2f50..fd272d1 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/fail.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 8ce1398..53de454 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/fail_one.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 9fef683..1e20470 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/filehandles.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index d9a591f..cda5bde 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/fork.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index cbaafac..150c826 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/harness_active.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 5d22d40..fd2aef4 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/import.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 2319c91..43cdce9 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/is_deeply_dne_bug.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # test for rt.cpan.org 20768
 #
index 5160a10..5bcb070 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/is_deeply_fail.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index e03e953..634bba3 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more-trunk/t/is_deeply_with_threads.t 60989 2008-09-10T03:05:54.548376Z schwern  $
+# $Id$
 
 # Test to see if is_deeply() plays well with threads.
 
index 5eb9157..e0cf30a 100644 (file)
@@ -1,5 +1,5 @@
 package Dummy;
-# $Id: /mirror/googlecode/test-more/t/lib/Dummy.pm 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 $VERSION = '0.01';
 
index 07b1dbe..6d78b93 100644 (file)
@@ -1,5 +1,5 @@
 package Overloaded;
-# $Id: /mirror/googlecode/test-more-trunk/t/lib/MyOverload.pm 67132 2008-10-01T01:11:04.501643Z schwern  $
+# $Id$
 
 sub new {
     my $class = shift;
index 5eb2b3b..314d59c 100644 (file)
@@ -1,5 +1,5 @@
 package NoExporter;
-# $Id: /mirror/googlecode/test-more-trunk/t/lib/NoExporter.pm 67132 2008-10-01T01:11:04.501643Z schwern  $
+# $Id$
 
 $VERSION = 1.02;
 
index cb46aff..11f2443 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/missing.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index c997990..10e85ab 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/no_plan.t 60319 2008-09-08T21:16:57.125001Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 5e6e86b..9a0ace6 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/no_tests.t 60310 2008-09-07T23:47:22.837229Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 2a72b5d..56ce942 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/note.t 60308 2008-09-07T22:36:18.175234Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index cd875be..1f1c9f8 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/overload.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 4617a34..bbd8e01 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/overload_threads.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 7ccca6d..3a55521 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/plan.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index c93c214..d126e88 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/plan_bad.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index d11c437..3ac7574 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/plan_is_noplan.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 2935b1b..fbe2408 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/plan_no_plan.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index bd320fa..9422613 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/plan_shouldnt_import.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 # plan() used to export functions by mistake [rt.cpan.org 8385]
 
index 99ce9d7..13335a4 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/plan_skip_all.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 6d0bfd0..8b1a943 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/require_ok.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 276924c..67bc6f3 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/simple.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index e199b11..a8a7cb9 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more/t/skip.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index b0c476b..1bc170b 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/skipall.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 4908a3c..231235e 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/tbm_doesnt_set_exported_to.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index f3b8ad8..98adc43 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/thread_taint.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 use Test::More tests => 1;
 
index 1daec94..65b7bb3 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/threads.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 8a30ad1..259a661 100644 (file)
@@ -1,5 +1,5 @@
 #!perl -w
-# $Id: /mirror/googlecode/test-more-trunk/t/todo.t 62094 2008-09-19T07:21:50.720642Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index c1f5cee..b7f1f2c 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/undef.t 60310 2008-09-07T23:47:22.837229Z schwern  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 9781ac8..a53fe25 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/use_ok.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index f67ecd8..19dde01 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/t/useing.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
index 544ad1c..e45e47b 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# $Id: /mirror/googlecode/test-more/t/utf8.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 BEGIN {
     if( $ENV{PERL_CORE} ) {
index 4de4a90..8ae3444 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: /mirror/googlecode/test-more/lib/Test/Tutorial.pod 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 =head1 NAME
 
 Test::Tutorial - A tutorial about writing really basic tests
index e89b4b5..9d2ae12 100644 (file)
@@ -1,5 +1,5 @@
 package Dev::Null;
-# $Id: /mirror/googlecode/test-more/t/lib/Dev/Null.pm 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 sub TIEHANDLE { bless {} }
 sub PRINT { 1 }
index c54228b..6f60493 100644 (file)
@@ -1,5 +1,5 @@
 # For testing Test::Simple;
-# $Id: /mirror/googlecode/test-more-trunk/t/lib/Test/Simple/Catch.pm 67132 2008-10-01T01:11:04.501643Z schwern  $
+# $Id$
 package Test::Simple::Catch;
 
 use Symbol;
index 24f8cb2..14ec3d6 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/death.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index 99a6935..f3fb6ab 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/death_in_eval.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 use Carp;
 
 push @INC, 't/lib';
index ddb1c06..7a0b2c3 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/death_with_handler.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index 46105a2..37ff587 100644 (file)
@@ -1,4 +1,4 @@
 require Test::Builder;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/exit.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 exit 1;
index c97a8ba..d2e9e99 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/extras.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index b23ebf9..6110cb6 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/five_fail.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 use lib 't/lib';
 require Test::Simple::Catch;
index 2aef954..a941186 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/last_minute_death.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index 5bc2fc9..80aba31 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/one_fail.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index bea6ddb..e947736 100644 (file)
@@ -1,5 +1,5 @@
 # ID 20020716.013, the exit code would become 0 if the test died
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/pre_plan_death.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 # before a plan.
 
 require Test::Simple;
index d589d01..7f9adeb 100644 (file)
@@ -1,2 +1,2 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/require.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
index 72f4519..99c2d9b 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/success.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index fc13586..003b07d 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/too_few.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index 2213fdc..6b2bbf8 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/too_few_fail.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;
index 19755b0..d4d6c37 100644 (file)
@@ -1,5 +1,5 @@
 require Test::Simple;
-# $Id: /mirror/googlecode/test-more/t/lib/Test/Simple/sample_tests/two_fail.plx 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
+# $Id$
 
 push @INC, 't/lib';
 require Test::Simple::Catch;