Hello community,
here is the log from the commit of package perl-Test-FailWarnings for
openSUSE:Factory checked in at 2013-10-06 14:56:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Test-FailWarnings (Old)
and /work/SRC/openSUSE:Factory/.perl-Test-FailWarnings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Test-FailWarnings"
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Test-FailWarnings/perl-Test-FailWarnings.changes
2013-09-27 17:57:04.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Test-FailWarnings.new/perl-Test-FailWarnings.changes
2013-10-06 14:56:13.000000000 +0200
@@ -1,0 +2,10 @@
+Fri Oct 4 09:15:17 UTC 2013 - [email protected]
+
+- updated to 0.008
+ [FIXES]
+ - Compile test could hang on Windows
+
+ [PREREQS]
+ - Dropped configure_requires for ExtUtils::MakeMaker to 6.17
+
+-------------------------------------------------------------------
Old:
----
Test-FailWarnings-0.007.tar.gz
New:
----
Test-FailWarnings-0.008.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Test-FailWarnings.spec ++++++
--- /var/tmp/diff_new_pack.lLkR5A/_old 2013-10-06 14:56:14.000000000 +0200
+++ /var/tmp/diff_new_pack.lLkR5A/_new 2013-10-06 14:56:14.000000000 +0200
@@ -17,7 +17,7 @@
Name: perl-Test-FailWarnings
-Version: 0.007
+Version: 0.008
Release: 0
%define cpan_name Test-FailWarnings
Summary: Add test failures if warnings are caught
@@ -31,13 +31,17 @@
BuildRequires: perl-macros
BuildRequires: perl(Capture::Tiny) >= 0.12
BuildRequires: perl(Test::More) >= 0.96
+#BuildRequires: perl(Noisy)
+#BuildRequires: perl(Pod::Wordlist)
+#BuildRequires: perl(Test::FailWarnings)
+#BuildRequires: perl(Test::Spelling) >= 0.12
Requires: perl(Test::More) >= 0.86
%{perl_requires}
%description
This module hooks '$SIG{__WARN__}' and converts warnings to the Test::More
-manpage's 'fail()' calls. It is designed to be used with 'done_testing',
-when you don't need to know the test count in advance.
+manpage 'fail()' calls. It is designed to be used with 'done_testing', when
+you don't need to know the test count in advance.
Just as with the Test::NoWarnings manpage, this does not catch warnings if
other things localize '$SIG{__WARN__}', as this is designed to catch
@@ -60,6 +64,6 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE perlcritic.rc README tidyall.ini
+%doc Changes CONTRIBUTING cpanfile LICENSE perlcritic.rc README tidyall.ini
%changelog
++++++ Test-FailWarnings-0.007.tar.gz -> Test-FailWarnings-0.008.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/CONTRIBUTING
new/Test-FailWarnings-0.008/CONTRIBUTING
--- old/Test-FailWarnings-0.007/CONTRIBUTING 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/CONTRIBUTING 2013-09-25 20:08:51.000000000
+0200
@@ -1,4 +1,4 @@
-CONTRIBUTING
+## HOW TO CONTRIBUTE
Thank you for considering contributing to this distribution. This file
contains instructions that will help you work with the source code.
@@ -7,44 +7,64 @@
usual files you might expect are not in the repository, but are generated
at release time (e.g. Makefile.PL).
-However, you can run tests directly using the 'prove' tool:
+### Getting dependencies
- $ prove -l
- $ prove -lv t/some_test_file.t
+See the included `cpanfile` file for a list of dependencies. If you have
+App::cpanminus 1.6 or later installed, you can use `cpanm` to satisfy
+dependencies like this:
-For most distributions, 'prove' is entirely sufficent for you to test any
+ $ cpanm --installdeps .
+
+Otherwise, you can install Module::CPANfile 1.0002 or later and then satisfy
+dependencies with the regular `cpan` client and `cpanfile-dump`:
+
+ $ cpan `cpanfile-dump`
+
+### Running tests
+
+You can run tests directly using the `prove` tool:
+
+ $ prove -l
+ $ prove -lv t/some_test_file.t
+
+For most distributions, `prove` is entirely sufficent for you to test any
patches you have.
-You may need to satisfy some dependencies. See the included META.json
-file for a list. If you install App::mymeta_requires from CPAN, it's easy
-to satisfy any that you are missing by piping the output to your favorite
-CPAN client:
+### Code style and tidying
+
+Please try to match any existing coding style. If there is a `.perltidyrc`
+file, please install Perl::Tidy and use perltidy before submitting patches.
+
+If there is a `tidyall.ini` file, you can also install Code::TidyAll and run
+`tidyall` on a file or `tidyall -a` to tidy all files.
- $ mymeta-requires | cpanm
- $ cpan `mymeta-requires`
+### Patching documentation
-Likewise, much of the documentation Pod is generated at release time.
+Much of the documentation Pod is generated at release time.
Depending on the distribution, some documentation may be written in a Pod
-dialect called WikiDoc. (See Pod::WikiDoc on CPAN.) If you would like to
-submit a documentation edit, please limit yourself to the documentation you
-see.
+dialect called WikiDoc. (See Pod::WikiDoc on CPAN.)
+
+If you would like to submit a documentation edit, please limit yourself to the
+documentation you see.
If you see typos or documentation issues in the generated docs, please
email or open a bug ticket instead of patching.
+### Learning Dist::Zilla
+
Dist::Zilla is a very powerful authoring tool, but requires a number of
author-specific plugins. If you would like to use it for contributing,
install it from CPAN, then run one of the following commands, depending on
your CPAN client:
- $ cpan `dzil authordeps`
- $ dzil authordeps | cpanm
+ $ cpan `dzil authordeps`
+ $ dzil authordeps | cpanm
Once installed, here are some dzil commands you might try:
- $ dzil build
- $ dzil test
- $ dzil xtest
+ $ dzil build
+ $ dzil test
+ $ dzil xtest
You can learn more about Dist::Zilla at http://dzil.org/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/Changes
new/Test-FailWarnings-0.008/Changes
--- old/Test-FailWarnings-0.007/Changes 2013-08-30 15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/Changes 2013-09-25 20:08:51.000000000 +0200
@@ -1,5 +1,15 @@
Revision history for Test-FailWarnings
+0.008 2013-09-25 14:08:48 America/New_York
+
+ [FIXES]
+
+ - Compile test could hang on Windows
+
+ [PREREQS]
+
+ - Dropped configure_requires for ExtUtils::MakeMaker to 6.17
+
0.007 2013-08-30 09:53:47 America/New_York
[FIXED]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/MANIFEST
new/Test-FailWarnings-0.008/MANIFEST
--- old/Test-FailWarnings-0.007/MANIFEST 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/MANIFEST 2013-09-25 20:08:51.000000000
+0200
@@ -6,6 +6,7 @@
META.yml
Makefile.PL
README
+cpanfile
dist.ini
lib/Test/FailWarnings.pm
perlcritic.rc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/META.json
new/Test-FailWarnings-0.008/META.json
--- old/Test-FailWarnings-0.007/META.json 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/META.json 2013-09-25 20:08:51.000000000
+0200
@@ -4,7 +4,7 @@
"David Golden <[email protected]>"
],
"dynamic_config" : 0,
- "generated_by" : "Dist::Zilla version 4.300037, CPAN::Meta::Converter
version 2.132140",
+ "generated_by" : "Dist::Zilla version 4.300039, CPAN::Meta::Converter
version 2.132620",
"license" : [
"apache_2_0"
],
@@ -27,7 +27,7 @@
"prereqs" : {
"configure" : {
"requires" : {
- "ExtUtils::MakeMaker" : "6.30"
+ "ExtUtils::MakeMaker" : "6.17"
}
},
"develop" : {
@@ -68,22 +68,22 @@
"provides" : {
"Test::FailWarnings" : {
"file" : "lib/Test/FailWarnings.pm",
- "version" : "0.007"
+ "version" : "0.008"
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
- "web" : "https://github.com/dagolden/test-failwarnings/issues"
+ "web" : "https://github.com/dagolden/Test-FailWarnings/issues"
},
- "homepage" : "https://metacpan.org/release/Test-FailWarnings",
+ "homepage" : "https://github.com/dagolden/Test-FailWarnings",
"repository" : {
"type" : "git",
- "url" : "git://github.com/dagolden/test-failwarnings.git",
- "web" : "https://github.com/dagolden/test-failwarnings"
+ "url" : "https://github.com/dagolden/Test-FailWarnings.git",
+ "web" : "https://github.com/dagolden/Test-FailWarnings"
}
},
- "version" : "0.007",
+ "version" : "0.008",
"x_authority" : "cpan:DAGOLDEN"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/META.yml
new/Test-FailWarnings-0.008/META.yml
--- old/Test-FailWarnings-0.007/META.yml 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/META.yml 2013-09-25 20:08:51.000000000
+0200
@@ -15,9 +15,9 @@
constant: 0
lib: 0
configure_requires:
- ExtUtils::MakeMaker: 6.30
+ ExtUtils::MakeMaker: 6.17
dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.300037, CPAN::Meta::Converter version
2.132140'
+generated_by: 'Dist::Zilla version 4.300039, CPAN::Meta::Converter version
2.132620'
license: apache
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -34,7 +34,7 @@
provides:
Test::FailWarnings:
file: lib/Test/FailWarnings.pm
- version: 0.007
+ version: 0.008
requires:
Carp: 0
Cwd: 0
@@ -44,8 +44,8 @@
strict: 0
warnings: 0
resources:
- bugtracker: https://github.com/dagolden/test-failwarnings/issues
- homepage: https://metacpan.org/release/Test-FailWarnings
- repository: git://github.com/dagolden/test-failwarnings.git
-version: 0.007
+ bugtracker: https://github.com/dagolden/Test-FailWarnings/issues
+ homepage: https://github.com/dagolden/Test-FailWarnings
+ repository: https://github.com/dagolden/Test-FailWarnings.git
+version: 0.008
x_authority: cpan:DAGOLDEN
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/Makefile.PL
new/Test-FailWarnings-0.008/Makefile.PL
--- old/Test-FailWarnings-0.007/Makefile.PL 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/Makefile.PL 2013-09-25 20:08:51.000000000
+0200
@@ -4,7 +4,7 @@
use 5.008001;
-use ExtUtils::MakeMaker 6.30;
+use ExtUtils::MakeMaker 6.17;
@@ -13,7 +13,7 @@
"AUTHOR" => "David Golden <dagolden\@cpan.org>",
"BUILD_REQUIRES" => {},
"CONFIGURE_REQUIRES" => {
- "ExtUtils::MakeMaker" => "6.30"
+ "ExtUtils::MakeMaker" => "6.17"
},
"DISTNAME" => "Test-FailWarnings",
"EXE_FILES" => [],
@@ -40,7 +40,7 @@
"constant" => 0,
"lib" => 0
},
- "VERSION" => "0.007",
+ "VERSION" => "0.008",
"test" => {
"TESTS" => "t/*.t"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/README
new/Test-FailWarnings-0.008/README
--- old/Test-FailWarnings-0.007/README 2013-08-30 15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/README 2013-09-25 20:08:51.000000000 +0200
@@ -2,7 +2,7 @@
Test::FailWarnings - Add test failures if warnings are caught
VERSION
- version 0.007
+ version 0.008
SYNOPSIS
Test file:
@@ -88,16 +88,16 @@
SUPPORT
Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker at
- <https://github.com/dagolden/test-failwarnings/issues>. You will be
+ <https://github.com/dagolden/Test-FailWarnings/issues>. You will be
notified automatically of any progress on your issue.
Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
- <https://github.com/dagolden/test-failwarnings>
+ <https://github.com/dagolden/Test-FailWarnings>
- git clone git://github.com/dagolden/test-failwarnings.git
+ git clone https://github.com/dagolden/Test-FailWarnings.git
AUTHOR
David Golden <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/cpanfile
new/Test-FailWarnings-0.008/cpanfile
--- old/Test-FailWarnings-0.007/cpanfile 1970-01-01 01:00:00.000000000
+0100
+++ new/Test-FailWarnings-0.008/cpanfile 2013-09-25 20:08:51.000000000
+0200
@@ -0,0 +1,32 @@
+requires "Carp" => "0";
+requires "Cwd" => "0";
+requires "File::Spec" => "0";
+requires "Test::More" => "0.86";
+requires "perl" => "5.008001";
+requires "strict" => "0";
+requires "warnings" => "0";
+
+on 'test' => sub {
+ requires "Capture::Tiny" => "0.12";
+ requires "ExtUtils::MakeMaker" => "0";
+ requires "File::Spec" => "0";
+ requires "File::Spec::Functions" => "0";
+ requires "File::Temp" => "0";
+ requires "IO::Handle" => "0";
+ requires "IPC::Open3" => "0";
+ requires "List::Util" => "0";
+ requires "Test::More" => "0.96";
+ requires "constant" => "0";
+ requires "lib" => "0";
+};
+
+on 'configure' => sub {
+ requires "ExtUtils::MakeMaker" => "6.17";
+};
+
+on 'develop' => sub {
+ requires "Pod::Coverage::TrustPod" => "0";
+ requires "Test::CPAN::Meta" => "0";
+ requires "Test::Pod" => "1.41";
+ requires "Test::Pod::Coverage" => "1.08";
+};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/dist.ini
new/Test-FailWarnings-0.008/dist.ini
--- old/Test-FailWarnings-0.007/dist.ini 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/dist.ini 2013-09-25 20:08:51.000000000
+0200
@@ -5,7 +5,4 @@
copyright_year = 2013
[@DAGOLDEN]
-:version = 0.035
-AutoMetaResources.bugtracker.rt = 0
-AutoMetaResources.bugtracker.github = user:dagolden
-stopwords = unhandled
+:version = 0.053
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/lib/Test/FailWarnings.pm
new/Test-FailWarnings-0.008/lib/Test/FailWarnings.pm
--- old/Test-FailWarnings-0.007/lib/Test/FailWarnings.pm 2013-08-30
15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/lib/Test/FailWarnings.pm 2013-09-25
20:08:51.000000000 +0200
@@ -4,7 +4,7 @@
package Test::FailWarnings;
# ABSTRACT: Add test failures if warnings are caught
-our $VERSION = '0.007'; # VERSION
+our $VERSION = '0.008'; # VERSION
use Test::More 0.86;
use Cwd qw/getcwd/;
@@ -37,9 +37,9 @@
# shortcut if ignoring dependencies and warning did not
# come from something local
- if ( $ALLOW_DEPS ) {
+ if ($ALLOW_DEPS) {
$filename = File::Spec->abs2rel( $filename, $ORIG_DIR )
- if File::Spec->file_name_is_absolute( $filename );
+ if File::Spec->file_name_is_absolute($filename);
return if $filename !~ /^(?:t|xt|lib|blib)/;
}
@@ -84,7 +84,7 @@
=head1 VERSION
-version 0.007
+version 0.008
=head1 SYNOPSIS
@@ -189,7 +189,7 @@
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
-at L<https://github.com/dagolden/test-failwarnings/issues>.
+at L<https://github.com/dagolden/Test-FailWarnings/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
@@ -197,9 +197,9 @@
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
-L<https://github.com/dagolden/test-failwarnings>
+L<https://github.com/dagolden/Test-FailWarnings>
- git clone git://github.com/dagolden/test-failwarnings.git
+ git clone https://github.com/dagolden/Test-FailWarnings.git
=head1 AUTHOR
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/00-compile.t
new/Test-FailWarnings-0.008/t/00-compile.t
--- old/Test-FailWarnings-0.007/t/00-compile.t 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/t/00-compile.t 2013-09-25 20:08:51.000000000
+0200
@@ -1,9 +1,9 @@
use strict;
use warnings;
-# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.022
+# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.033
-use Test::More 0.88;
+use Test::More tests => 1 + ($ENV{AUTHOR_TESTING} ? 1 : 0);
@@ -11,31 +11,31 @@
'Test/FailWarnings.pm'
);
-my @scripts = (
-);
# fake home for cpan-testers
use File::Temp;
local $ENV{HOME} = File::Temp::tempdir( CLEANUP => 1 );
+use File::Spec;
use IPC::Open3;
use IO::Handle;
-use File::Spec;
my @warnings;
for my $lib (@module_files)
{
- open my $stdout, '>', File::Spec->devnull or die $!;
- open my $stdin, '<', File::Spec->devnull or die $!;
+ # see L<perlfaq8/How can I capture STDERR from an external command?>
+ open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!";
my $stderr = IO::Handle->new;
- my $pid = open3($stdin, $stdout, $stderr, qq{$^X -Mblib -e"require
q[$lib]"});
+ my $pid = open3($stdin, '>&STDERR', $stderr, $^X, '-Mblib', '-e', "require
q[$lib]");
+ binmode $stderr, ':crlf' if $^O eq 'MSWin32';
+ my @_warnings = <$stderr>;
waitpid($pid, 0);
is($? >> 8, 0, "$lib loaded ok");
- if (my @_warnings = <$stderr>)
+ if (@_warnings)
{
warn @_warnings;
push @warnings, @_warnings;
@@ -47,5 +47,3 @@
is(scalar(@warnings), 0, 'no warnings found') if $ENV{AUTHOR_TESTING};
-
-done_testing;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/bin/main-warn.pl
new/Test-FailWarnings-0.008/t/bin/main-warn.pl
--- old/Test-FailWarnings-0.007/t/bin/main-warn.pl 2013-08-30
15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/t/bin/main-warn.pl 2013-09-25
20:08:51.000000000 +0200
@@ -3,7 +3,7 @@
use Test::More;
use Test::FailWarnings;
-ok( 1, "first test" );
+ok( 1, "first test" );
ok( 1 + "lkadjaks", "add non-numeric" );
done_testing;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/bin/module-warn.pl
new/Test-FailWarnings-0.008/t/bin/module-warn.pl
--- old/Test-FailWarnings-0.007/t/bin/module-warn.pl 2013-08-30
15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/t/bin/module-warn.pl 2013-09-25
20:08:51.000000000 +0200
@@ -5,7 +5,7 @@
use lib 't/lib';
use Noisy;
-ok( 1, "first test" );
+ok( 1, "first test" );
ok( Noisy::do_it(), "call do_it" );
done_testing;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/bin/warn-newline.pl
new/Test-FailWarnings-0.008/t/bin/warn-newline.pl
--- old/Test-FailWarnings-0.007/t/bin/warn-newline.pl 2013-08-30
15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/t/bin/warn-newline.pl 2013-09-25
20:08:51.000000000 +0200
@@ -5,7 +5,7 @@
use lib 't/lib';
use Noisy;
-ok( 1, "first test" );
+ok( 1, "first test" );
ok( Noisy::with_newline(), "call with_newline" );
done_testing;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/failwarn.t
new/Test-FailWarnings-0.008/t/failwarn.t
--- old/Test-FailWarnings-0.007/t/failwarn.t 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/t/failwarn.t 2013-09-25 20:08:51.000000000
+0200
@@ -6,46 +6,46 @@
my @cases = (
{
- label => "warning in .t",
- file => "t/bin/main-warn.pl",
+ label => "warning in .t",
+ file => "t/bin/main-warn.pl",
expect => qr/isn't numeric/,
},
{
- label => "warning from module",
- file => "t/bin/module-warn.pl",
+ label => "warning from module",
+ file => "t/bin/module-warn.pl",
expect => qr/I am noisy/,
},
{
- label => "warning without line",
- file => "t/bin/warn-newline.pl",
+ label => "warning without line",
+ file => "t/bin/warn-newline.pl",
expect => qr/No line number/,
},
{
- label => "allow_deps true",
- file => "t/bin/allow-deps.pl",
+ label => "allow_deps true",
+ file => "t/bin/allow-deps.pl",
exit_ok => 1,
},
{
- label => "allow_deps false",
- file => "t/bin/force-deps.pl",
+ label => "allow_deps false",
+ file => "t/bin/force-deps.pl",
expect => qr/is a Perl keyword/,
},
{
- label => "allow_from",
- file => "t/bin/allow-constant.pl",
+ label => "allow_from",
+ file => "t/bin/allow-constant.pl",
exit_ok => 1,
},
);
for my $c (@cases) {
- my ($output, $error, $rc) = capture { system($^X, $c->{file}) };
+ my ( $output, $error, $rc ) = capture { system( $^X, $c->{file} ) };
subtest $c->{label} => sub {
if ( $c->{exit_ok} ) {
ok( !$rc, "exit ok" )
- or diag "ERROR: $error";
+ or diag "ERROR: $error";
}
else {
- ok( $rc, "nonzero exit" );
+ ok( $rc, "nonzero exit" );
like( $c->{stdout} ? $output : $error, $c->{expect}, "exception
text" );
}
};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/t/lib/Noisy.pm
new/Test-FailWarnings-0.008/t/lib/Noisy.pm
--- old/Test-FailWarnings-0.007/t/lib/Noisy.pm 2013-08-30 15:53:50.000000000
+0200
+++ new/Test-FailWarnings-0.008/t/lib/Noisy.pm 2013-09-25 20:08:51.000000000
+0200
@@ -1,10 +1,11 @@
use 5.008001;
use strict;
use warnings;
+
package Noisy;
sub do_it {
- warn "I am noisy"
+ warn "I am noisy";
}
sub with_newline {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Test-FailWarnings-0.007/xt/author/pod-spell.t
new/Test-FailWarnings-0.008/xt/author/pod-spell.t
--- old/Test-FailWarnings-0.007/xt/author/pod-spell.t 2013-08-30
15:53:50.000000000 +0200
+++ new/Test-FailWarnings-0.008/xt/author/pod-spell.t 2013-09-25
20:08:51.000000000 +0200
@@ -2,14 +2,14 @@
use warnings;
use Test::More;
-# generated by Dist::Zilla::Plugin::Test::PodSpelling 2.006000
-eval "use Test::Spelling 0.12; use Pod::Wordlist::hanekomu; 1" or die $@;
+# generated by Dist::Zilla::Plugin::Test::PodSpelling 2.006001
+use Test::Spelling 0.12;
+use Pod::Wordlist;
add_stopwords(<DATA>);
all_pod_files_spelling_ok( qw( bin lib ) );
__DATA__
-unhandled
David
Golden
dagolden
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]