Skip Menu |

This queue is for tickets about the DataTables CPAN distribution.

Report information
The Basics
Id: 125276
Status: resolved
Priority: 0/
Queue: DataTables

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in:
  • 0.05
  • 0.06
Fixed in: 0.07



Subject: Fails without DBD::SQLite installed
On 2018-05-05 00:00:28, ANDK wrote: Show quoted text
> Search reveals where the SQLite string comes from: > > http://search.cpan.org/grep?release=DataTables- > 0.05;string=SQLite;n=1;C=0 > > A list of fail reports due to undeclared dependency: > > http://analysis.cpantesters.org/reports_by_field?distv=DataTables- > 0.05;field=qr%3A%28Can%27t%20locate%20%5CS%2Bpm%29 > > A sample fail report: > > http://www.cpantesters.org/cpan/report/94823570
I see that a "skip" is implemented in 0.06, but it's not done correctly: ... You tried to plan twice at t/01-data-tests-sqlite.t line 9. # Looks like you planned 2 tests but ran 1. # Looks like your test exited with 2 just after 1. t/01-data-tests-sqlite.t .. Dubious, test returned 2 (wstat 512, 0x200) Failed 1/2 subtests ... Probably this can be fixed by writing (untested): use Test::More; # no plan here ... plan skip_all => ... plan tests => 2;
Fixed with pull request #7 (https://github.com/manwar/CGI--Simple/pull/7) Am Mo 25. Jun 2018, 13:50:09, SREZIC schrieb: Show quoted text
> On 2018-05-05 00:00:28, ANDK wrote:
> > Search reveals where the SQLite string comes from: > > > > http://search.cpan.org/grep?release=DataTables- > > 0.05;string=SQLite;n=1;C=0 > > > > A list of fail reports due to undeclared dependency: > > > > http://analysis.cpantesters.org/reports_by_field?distv=DataTables- > > 0.05;field=qr%3A%28Can%27t%20locate%20%5CS%2Bpm%29 > > > > A sample fail report: > > > > http://www.cpantesters.org/cpan/report/94823570
> > I see that a "skip" is implemented in 0.06, but it's not done correctly: > > ... > You tried to plan twice at t/01-data-tests-sqlite.t line 9. > # Looks like you planned 2 tests but ran 1. > # Looks like your test exited with 2 just after 1. > t/01-data-tests-sqlite.t .. > Dubious, test returned 2 (wstat 512, 0x200) > Failed 1/2 subtests > ... > > Probably this can be fixed by writing (untested): > > use Test::More; # no plan here > ... > plan skip_all => ... > plan tests => 2;
Linked wrong PR... :( But it is fixed with 0.07 release Am Di 25. Sep 2018, 19:12:41, ASB schrieb: Show quoted text
> Fixed with pull request #7 (https://github.com/manwar/CGI--Simple/pull/7) > > Am Mo 25. Jun 2018, 13:50:09, SREZIC schrieb:
> > On 2018-05-05 00:00:28, ANDK wrote:
> > > Search reveals where the SQLite string comes from: > > > > > > http://search.cpan.org/grep?release=DataTables- > > > 0.05;string=SQLite;n=1;C=0 > > > > > > A list of fail reports due to undeclared dependency: > > > > > > http://analysis.cpantesters.org/reports_by_field?distv=DataTables- > > > 0.05;field=qr%3A%28Can%27t%20locate%20%5CS%2Bpm%29 > > > > > > A sample fail report: > > > > > > http://www.cpantesters.org/cpan/report/94823570
> > > > I see that a "skip" is implemented in 0.06, but it's not done correctly: > > > > ... > > You tried to plan twice at t/01-data-tests-sqlite.t line 9. > > # Looks like you planned 2 tests but ran 1. > > # Looks like your test exited with 2 just after 1. > > t/01-data-tests-sqlite.t .. > > Dubious, test returned 2 (wstat 512, 0x200) > > Failed 1/2 subtests > > ... > > > > Probably this can be fixed by writing (untested): > > > > use Test::More; # no plan here > > ... > > plan skip_all => ... > > plan tests => 2;
> >