Skip Menu |

This queue is for tickets about the App-CatalystStarter-Bloated CPAN distribution.

Report information
The Basics
Id: 110689
Status: resolved
Worked: 5 min
Priority: 0/
Queue: App-CatalystStarter-Bloated

People
Owner: torbjorn.lindahl [...] gmail.com
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: v0.9.2
Fixed in: (no value)



Subject: perlcritic test may fail
The perlcritic test fails, probably only if additional perlcritic rules are installed: # Failed test 'Test::Perl::Critic for "blib/lib/App/CatalystStarter/Bloated/Initializr.pm"' # at /opt/perl-5.23.6/lib/site_perl/5.23.6/Test/Perl/Critic.pm line 104. # # Variable, subroutine, and package names have to be in CamelCase at line 16, column 4. (no explanation). (Severity: 5) # Variable, subroutine, and package names have to be in CamelCase at line 17, column 4. (no explanation). (Severity: 5) ...
On 2015-12-28 01:03:41, SREZIC wrote: Show quoted text
> The perlcritic test fails, probably only if additional perlcritic > rules are installed: > > # Failed test 'Test::Perl::Critic for > "blib/lib/App/CatalystStarter/Bloated/Initializr.pm"' > # at /opt/perl-5.23.6/lib/site_perl/5.23.6/Test/Perl/Critic.pm line > 104. > # > # Variable, subroutine, and package names have to be in CamelCase at > line 16, column 4. (no explanation). (Severity: 5) > # Variable, subroutine, and package names have to be in CamelCase at > line 17, column 4. (no explanation). (Severity: 5) > ...
Please don't allow pod, critic or kwalitee tests to run for normal user installs, as they make the installation fail unnecessarily when newer versions of the tester introduce errors that you cannot anticipate. Also spelling tests are dependent on what dictionaries are installed locally, and critic tests use all plugins that are installed, both of which cannot be predicted in advance. Either move them to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};
On Mon Dec 28 04:03:41 2015, SREZIC wrote: Show quoted text
> The perlcritic test fails, probably only if additional perlcritic > rules are installed: > > # Failed test 'Test::Perl::Critic for > "blib/lib/App/CatalystStarter/Bloated/Initializr.pm"' > # at /opt/perl-5.23.6/lib/site_perl/5.23.6/Test/Perl/Critic.pm line > 104. > # > # Variable, subroutine, and package names have to be in CamelCase at > line 16, column 4. (no explanation). (Severity: 5) > # Variable, subroutine, and package names have to be in CamelCase at > line 17, column 4. (no explanation). (Severity: 5) > ...
Fixed with submitted v0.9.3 release T.
Subject: Re: [rt.cpan.org #110689] perlcritic test may fail
Date: Mon, 4 Jan 2016 15:29:17 +0100
To: bug-App-CatalystStarter-Bloated [...] rt.cpan.org
From: Torbjørn Lindahl <torbjorn.lindahl [...] gmail.com>
Thanks for taking the trouble to check this! should be fixed now. T. On Tue, Dec 29, 2015 at 1:15 AM, Karen Etheridge via RT < bug-App-CatalystStarter-Bloated@rt.cpan.org> wrote: Show quoted text
> Queue: App-CatalystStarter-Bloated > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=110689 > > > On 2015-12-28 01:03:41, SREZIC wrote:
> > The perlcritic test fails, probably only if additional perlcritic > > rules are installed: > > > > # Failed test 'Test::Perl::Critic for > > "blib/lib/App/CatalystStarter/Bloated/Initializr.pm"' > > # at /opt/perl-5.23.6/lib/site_perl/5.23.6/Test/Perl/Critic.pm line > > 104. > > # > > # Variable, subroutine, and package names have to be in CamelCase at > > line 16, column 4. (no explanation). (Severity: 5) > > # Variable, subroutine, and package names have to be in CamelCase at > > line 17, column 4. (no explanation). (Severity: 5) > > ...
> > > Please don't allow pod, critic or kwalitee tests to run for normal user > installs, as they make the installation fail unnecessarily when newer > versions of the tester introduce errors that you cannot anticipate. Also > spelling tests are dependent on what dictionaries are installed locally, > and critic tests use all plugins that are installed, both of which cannot > be predicted in advance. > > Either move them to xt/, or guard them with: > > plan skip_all => "These tests are for authors only!" unless > $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING}; >
-- mvh Torbjørn Lindahl