From 26e975b09c2f9906e7cddbe662b8ad5ba37f6c3d Mon Sep 17 00:00:00 2001 From: Ricardo SIGNES Date: Wed, 15 Aug 2007 11:02:50 -0400 Subject: [PATCH] correct -t to -T in tests --- Changes | 3 +++ lib/Config/INI/Reader.pm | 4 ++-- lib/Config/INI/Writer.pm | 4 ++-- t/00-load.t | 2 +- t/pod-coverage.t | 2 +- t/pod.t | 2 +- t/reader-err.t | 2 +- t/reader.t | 2 +- t/writer.t | 2 +- 9 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Changes b/Changes index f6ec0e5..ab62669 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changelog for Config-INI-Reader +0.006 2007-08-15 + use -T instead of -t in tests; -t is a perl 5.008 feature + 0.005 2007-08-13 add finalize method, lazy-load starting section method (this means that you can have starting_section die to prevent properties outside diff --git a/lib/Config/INI/Reader.pm b/lib/Config/INI/Reader.pm index 1d53ce0..b292c9a 100644 --- a/lib/Config/INI/Reader.pm +++ b/lib/Config/INI/Reader.pm @@ -9,11 +9,11 @@ Config::INI::Reader - a subclassable .ini-file parser =head1 VERSION -version 0.005 +version 0.006 =cut -$Config::INI::Reader::VERSION = '0.005'; +$Config::INI::Reader::VERSION = '0.006'; =head1 SYNOPSIS diff --git a/lib/Config/INI/Writer.pm b/lib/Config/INI/Writer.pm index bb4b877..71b055c 100644 --- a/lib/Config/INI/Writer.pm +++ b/lib/Config/INI/Writer.pm @@ -9,11 +9,11 @@ Config::INI::Writer - a subclassable .ini-file emitter =head1 VERSION -version 0.005 +version 0.006 =cut -$Config::INI::Writer::VERSION = '0.005'; +$Config::INI::Writer::VERSION = '0.006'; =head1 SYNOPSIS diff --git a/t/00-load.t b/t/00-load.t index d4c74e1..ab7dcea 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict; use Test::More tests => 2; diff --git a/t/pod-coverage.t b/t/pod-coverage.t index cd9f6b9..c15102a 100644 --- a/t/pod-coverage.t +++ b/t/pod-coverage.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict; use Test::More; diff --git a/t/pod.t b/t/pod.t index 008a523..6a159d8 100644 --- a/t/pod.t +++ b/t/pod.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict; use Test::More; diff --git a/t/reader-err.t b/t/reader-err.t index ff0a47f..95ae0a5 100644 --- a/t/reader-err.t +++ b/t/reader-err.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict; diff --git a/t/reader.t b/t/reader.t index 067a62f..c58d905 100644 --- a/t/reader.t +++ b/t/reader.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict; diff --git a/t/writer.t b/t/writer.t index f042b62..61faca3 100644 --- a/t/writer.t +++ b/t/writer.t @@ -1,4 +1,4 @@ -#!perl -tw +#!perl -Tw use strict;