Report for DBICx-Modeler-Generator-0.02

Back
From: metabase:user:3198cbe2-2aae-11df-837a-5e0a49663a4f
Subject: FAIL DBICx-Modeler-Generator-0.02 v5.14.3 GNU/Linux
Date: 2012-12-14T20:29:33Z

This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language.  See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org


--
Dear Moriya Masaki,

This is a computer-generated report for DBICx-Modeler-Generator-0.02
on perl 5.14.3, created by CPAN-Reporter-1.2007.

Thank you for uploading your work to CPAN.  However, there was a problem
testing your distribution.

If you think this report is invalid, please consult the CPAN Testers Wiki
for suggestions on how to avoid getting FAIL reports for missing library
or binary dependencies, unsupported operating systems, and so on:

http://wiki.cpantesters.org/wiki/CPANAuthorNotes

Sections of this report:

    * Tester comments
    * Program output
    * Prerequisites
    * Environment and other context

------------------------------
TESTER COMMENTS
------------------------------

Additional comments from tester:

this report is from an automated smoke testing program
and was not reviewed by a human for accuracy

------------------------------
PROGRAM OUTPUT
------------------------------

Output from '/usr/bin/make test':

PERL_DL_NONLAZY=1 /home/graham/perls/perl-5.14.3/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::a" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::b" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.

#   Failed test 'no exception to update_schemata'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 273.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
# died: Failed to reload class MyApp::Schema::Result::Artist: Can't locate object method "INC" via package "Path::Class::Dir" at (eval 843) line 2.
# .
# 
# CLASS SOURCE:
# 
# use utf8;
# package MyApp::Schema::Result::Artist;
# 
# # Created by DBIx::Class::Schema::Loader
# # DO NOT MODIFY THE FIRST PART OF THIS FILE
# 
# =head1 NAME
# 
# MyApp::Schema::Result::Artist
# 
# =cut
# 
# use strict;
# use warnings;
# 
# use base 'DBIx::Class::Core';
# 
# =head1 TABLE: C<artist>
# 
# =cut
# 
# __PACKAGE__->table("artist");
# 
# =head1 ACCESSORS
# 
# =head2 id
# 
#   data_type: 'integer'
#   is_auto_increment: 1
#   is_nullable: 0
# 
# =head2 name
# 
#   data_type: 'text'
#   is_nullable: 0
# 
# =head2 insert_date_time
# 
#   data_type: 'date'
#   default_value: current_timestamp
#   is_nullable: 0
# 
# =cut
# 
# __PACKAGE__->add_columns(
#   "id",
#   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
#   "name",
#   { data_type => "text", is_nullable => 0 },
#   "insert_date_time",
#   {
#     data_type     => "date",
#     default_value => \"current_timestamp",
#     is_nullable   => 0,
#   },
# );
# 
# =head1 PRIMARY KEY
# 
# =over 4
# 
# =item * L</id>
# 
# =back
# 
# =cut
# 
# __PACKAGE__->set_primary_key("id");
# 
# =head1 RELATIONS
# 
# =head2 cds
# 
# Type: has_many
# 
# Related object: L<MyApp::Schema::Result::Cd>
# 
# =cut
# 
# __PACKAGE__->has_many(
#   "cds",
#   "MyApp::Schema::Result::Cd",
#   { "foreign.artist" => "self.id" },
#   { cascade_copy => 0, cascade_delete => 0 },
# );
# 
# 
# # Created by DBIx::Class::Schema::Loader v0.07033 @ 2012-12-14 20:29:17
# # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lBjQEzRxQ4huHqK68oA1tA
# 
# 
# # You can replace this text with custom code or comments, and it will be preserved on regeneration
# 1;

#   Failed test 'schema module was generated: examples/MyApp/Schema/Artist.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 298.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)

#   Failed test 'schema module was generated: examples/lib/MyApp/Schema/Cd.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 300.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)

#   Failed test 'schema module was generated: examples/lib/MyApp/Schema/Track.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 302.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)

#   Failed test 'use MyApp::Schema::Artist;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Artist'.
#     Error:  Can't locate MyApp/Schema/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 845) line 2.
# BEGIN failed--compilation aborted at (eval 845) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'use MyApp::Schema::Cd;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Cd'.
#     Error:  Can't locate MyApp/Schema/Cd.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 846) line 2.
# BEGIN failed--compilation aborted at (eval 846) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'use MyApp::Schema::Track;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Track'.
#     Error:  Can't locate MyApp/Schema/Track.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 847) line 2.
# BEGIN failed--compilation aborted at (eval 847) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'MyApp::Schema::Artist->can('birthday')'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 325.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     MyApp::Schema::Artist->can('birthday') failed

#   Failed test 'MyApp::Schema::Track->can('recording_time')'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 326.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     MyApp::Schema::Track->can('recording_time') failed

#   Failed test 'model module was generated: examples/lib/MyApp/Model/Artist.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 339.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)

#   Failed test 'model module was generated: examples/lib/MyApp/Model/Track.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 347.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)

#   Failed test 'use MyApp::Model::Artist;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 364.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Model::Artist'.
#     Error:  Can't locate MyApp/Model/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 854) line 2.
# BEGIN failed--compilation aborted at (eval 854) line 2.

#   Failed test 'test_as_blackbox died (Can't locate MyApp/Model/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at /home/graham/perls/perl-5.14.3/lib/5.14.3/Module/Load.pm line 27.
# Can't locate MyApp/Model/Artist in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at /home/graham/perls/perl-5.14.3/lib/5.14.3/Module/Load.pm line 27.)'
#   at t/00_sqlite_manual.t line 11.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->test_as_blackbox)
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Dumping manual schema for MyApp::Schema to directory examples/lib ...
Deleting existing file 'examples/lib/MyApp/Schema.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Artist.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Cd.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Track.pm' due to 'really_erase_my_files' setting
Schema dump completed.

#   Failed test 'shutdown died (Failed to reload class MyApp::Schema::Result::Artist: Can't locate object method "INC" via package "Path::Class::Dir" at (eval 889) line 2.
# .
# 
# CLASS SOURCE:
# 
# use utf8;
# package MyApp::Schema::Result::Artist;
# 
# \# Created by DBIx::Class::Schema::Loader
# \# DO NOT MODIFY THE FIRST PART OF THIS FILE
# 
# =head1 NAME
# 
# MyApp::Schema::Result::Artist
# 
# =cut
# 
# use strict;
# use warnings;
# 
# use base 'DBIx::Class::Core';
# 
# =head1 TABLE: C<artist>
# 
# =cut
# 
# __PACKAGE__->table("artist");
# 
# =head1 ACCESSORS
# 
# =head2 id
# 
#   data_type: 'integer'
#   is_auto_increment: 1
#   is_nullable: 0
# 
# =head2 name
# 
#   data_type: 'text'
#   is_nullable: 0
# 
# =head2 insert_date_time
# 
#   data_type: 'date'
#   default_value: current_timestamp
#   is_nullable: 0
# 
# =cut
# 
# __PACKAGE__->add_columns(
#   "id",
#   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
#   "name",
#   { data_type => "text", is_nullable => 0 },
#   "insert_date_time",
#   {
#     data_type     => "date",
#     default_value => \"current_timestamp",
#     is_nullable   => 0,
#   },
# );
# 
# =head1 PRIMARY KEY
# 
# =over 4
# 
# =item * L</id>
# 
# =back
# 
# =cut
# 
# __PACKAGE__->set_primary_key("id");
# 
# =head1 RELATIONS
# 
# =head2 cds
# 
# Type: has_many
# 
# Related object: L<MyApp::Schema::Result::Cd>
# 
# =cut
# 
# __PACKAGE__->has_many(
#   "cds",
#   "MyApp::Schema::Result::Cd",
#   { "foreign.artist" => "self.id" },
#   { cascade_copy => 0, cascade_delete => 0 },
# );
# 
# 
# \# Created by DBIx::Class::Schema::Loader v0.07033 @ 2012-12-14 20:29:17
# \# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lBjQEzRxQ4huHqK68oA1tA
# 
# 
# \# You can replace this text with custom code or comments, and it will be preserved on regeneration
# 1;)'
#   at t/00_sqlite_manual.t line 11.
#   (in Test::DBICx::Modeler::Generator::Manual::SQLite->shutdown)
# Looks like you failed 17 tests of 86.
t/00_sqlite_manual.t ...... 
Dubious, test returned 17 (wstat 4352, 0x1100)
Failed 17/86 subtests 
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::a" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::b" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
t/01_sqlite_longname.t .... ok
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::a" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::b" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.

#   Failed test 'no exception to update_schemata'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 273.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
# died: Failed to reload class MyApp::Schema::Result::Artist: Can't locate object method "INC" via package "Path::Class::Dir" at (eval 898) line 2.
# .
# 
# CLASS SOURCE:
# 
# use utf8;
# package MyApp::Schema::Result::Artist;
# 
# # Created by DBIx::Class::Schema::Loader
# # DO NOT MODIFY THE FIRST PART OF THIS FILE
# 
# =head1 NAME
# 
# MyApp::Schema::Result::Artist
# 
# =cut
# 
# use strict;
# use warnings;
# 
# use base 'DBIx::Class::Core';
# 
# =head1 TABLE: C<artist>
# 
# =cut
# 
# __PACKAGE__->table("artist");
# 
# =head1 ACCESSORS
# 
# =head2 id
# 
#   data_type: 'integer'
#   is_auto_increment: 1
#   is_nullable: 0
# 
# =head2 name
# 
#   data_type: 'text'
#   is_nullable: 0
# 
# =head2 insert_date_time
# 
#   data_type: 'date'
#   default_value: current_timestamp
#   is_nullable: 0
# 
# =cut
# 
# __PACKAGE__->add_columns(
#   "id",
#   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
#   "name",
#   { data_type => "text", is_nullable => 0 },
#   "insert_date_time",
#   {
#     data_type     => "date",
#     default_value => \"current_timestamp",
#     is_nullable   => 0,
#   },
# );
# 
# =head1 PRIMARY KEY
# 
# =over 4
# 
# =item * L</id>
# 
# =back
# 
# =cut
# 
# __PACKAGE__->set_primary_key("id");
# 
# =head1 RELATIONS
# 
# =head2 cds
# 
# Type: has_many
# 
# Related object: L<MyApp::Schema::Result::Cd>
# 
# =cut
# 
# __PACKAGE__->has_many(
#   "cds",
#   "MyApp::Schema::Result::Cd",
#   { "foreign.artist" => "self.id" },
#   { cascade_copy => 0, cascade_delete => 0 },
# );
# 
# 
# # Created by DBIx::Class::Schema::Loader v0.07033 @ 2012-12-14 20:29:23
# # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3VcP9/nfhEvDXQYhY+rzJA
# 
# 
# # You can replace this text with custom code or comments, and it will be preserved on regeneration
# 1;

#   Failed test 'schema module was generated: examples/MyApp/Schema/Artist.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 298.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)

#   Failed test 'schema module was generated: examples/lib/MyApp/Schema/Cd.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 300.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)

#   Failed test 'schema module was generated: examples/lib/MyApp/Schema/Track.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 302.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)

#   Failed test 'use MyApp::Schema::Artist;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Artist'.
#     Error:  Can't locate MyApp/Schema/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 900) line 2.
# BEGIN failed--compilation aborted at (eval 900) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'use MyApp::Schema::Cd;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Cd'.
#     Error:  Can't locate MyApp/Schema/Cd.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 901) line 2.
# BEGIN failed--compilation aborted at (eval 901) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'use MyApp::Schema::Track;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 321.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Schema::Track'.
#     Error:  Can't locate MyApp/Schema/Track.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 902) line 2.
# BEGIN failed--compilation aborted at (eval 902) line 2.

#   Failed test 'The class isa DBIx::Class'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 322.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     The class isn't a 'DBIx::Class' it's a ''

#   Failed test 'MyApp::Schema::Artist->can('birthday')'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 325.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     MyApp::Schema::Artist->can('birthday') failed

#   Failed test 'MyApp::Schema::Track->can('recording_time')'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 326.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     MyApp::Schema::Track->can('recording_time') failed

#   Failed test 'model module was generated: examples/lib/MyApp/Model/Artist.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 339.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)

#   Failed test 'model module was generated: examples/lib/MyApp/Model/Track.pm'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 347.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)

#   Failed test 'use MyApp::Model::Artist;'
#   at t/lib/Test/DBICx/Modeler/Generator.pm line 364.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
#     Tried to use 'MyApp::Model::Artist'.
#     Error:  Can't locate MyApp/Model/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at (eval 909) line 2.
# BEGIN failed--compilation aborted at (eval 909) line 2.

#   Failed test 'test_as_blackbox died (Can't locate MyApp/Model/Artist.pm in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at /home/graham/perls/perl-5.14.3/lib/5.14.3/Module/Load.pm line 27.
# Can't locate MyApp/Model/Artist in @INC (@INC contains: examples/lib t/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/inc /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/lib /home/graham/perls/caches/perl-5.14.3/build/DBICx-Modeler-Generator-0.02-cW_UNr/blib/arch /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3 /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux /home/graham/perls/perl-5.14.3/lib/5.14.3 .) at /home/graham/perls/perl-5.14.3/lib/5.14.3/Module/Load.pm line 27.)'
#   at t/02_sqlite_shortname.t line 12.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->test_as_blackbox)
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Argument "1.38_01" isn't numeric in numeric ge (>=) at t/lib/Test/DBICx/Modeler/Generator/SQLite.pm line 222.
Dumping manual schema for MyApp::Schema to directory examples/lib ...
Deleting existing file 'examples/lib/MyApp/Schema.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Artist.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Cd.pm' due to 'really_erase_my_files' setting
Deleting existing file 'examples/lib/MyApp/Schema/Result/Track.pm' due to 'really_erase_my_files' setting
Schema dump completed.

#   Failed test 'shutdown died (Failed to reload class MyApp::Schema::Result::Artist: Can't locate object method "INC" via package "Path::Class::Dir" at (eval 944) line 2.
# .
# 
# CLASS SOURCE:
# 
# use utf8;
# package MyApp::Schema::Result::Artist;
# 
# \# Created by DBIx::Class::Schema::Loader
# \# DO NOT MODIFY THE FIRST PART OF THIS FILE
# 
# =head1 NAME
# 
# MyApp::Schema::Result::Artist
# 
# =cut
# 
# use strict;
# use warnings;
# 
# use base 'DBIx::Class::Core';
# 
# =head1 TABLE: C<artist>
# 
# =cut
# 
# __PACKAGE__->table("artist");
# 
# =head1 ACCESSORS
# 
# =head2 id
# 
#   data_type: 'integer'
#   is_auto_increment: 1
#   is_nullable: 0
# 
# =head2 name
# 
#   data_type: 'text'
#   is_nullable: 0
# 
# =head2 insert_date_time
# 
#   data_type: 'date'
#   default_value: current_timestamp
#   is_nullable: 0
# 
# =cut
# 
# __PACKAGE__->add_columns(
#   "id",
#   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
#   "name",
#   { data_type => "text", is_nullable => 0 },
#   "insert_date_time",
#   {
#     data_type     => "date",
#     default_value => \"current_timestamp",
#     is_nullable   => 0,
#   },
# );
# 
# =head1 PRIMARY KEY
# 
# =over 4
# 
# =item * L</id>
# 
# =back
# 
# =cut
# 
# __PACKAGE__->set_primary_key("id");
# 
# =head1 RELATIONS
# 
# =head2 cds
# 
# Type: has_many
# 
# Related object: L<MyApp::Schema::Result::Cd>
# 
# =cut
# 
# __PACKAGE__->has_many(
#   "cds",
#   "MyApp::Schema::Result::Cd",
#   { "foreign.artist" => "self.id" },
#   { cascade_copy => 0, cascade_delete => 0 },
# );
# 
# 
# \# Created by DBIx::Class::Schema::Loader v0.07033 @ 2012-12-14 20:29:23
# \# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3VcP9/nfhEvDXQYhY+rzJA
# 
# 
# \# You can replace this text with custom code or comments, and it will be preserved on regeneration
# 1;)'
#   at t/02_sqlite_shortname.t line 12.
#   (in Test::DBICx::Modeler::Generator::CLI::SQLite->shutdown)
# Looks like you failed 17 tests of 86.
t/02_sqlite_shortname.t ... 
Dubious, test returned 17 (wstat 4352, 0x1100)
Failed 17/86 subtests 
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::a" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
Name "Package::DeprecationManager::b" used only once: possible typo at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/03_sqlite_configfile.t .. ok
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/10_mysql_manual.t ....... skipped: Test requires module 'DBD::mysql' but it's not found
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/11_mysql_longname.t ..... skipped: Test requires module 'DBD::mysql' but it's not found
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/12_mysql_shortname.t .... skipped: Test requires module 'DBD::mysql' but it's not found
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/13_mysql_configfile.t ... skipped: Test requires module 'DBD::mysql' but it's not found
Useless use of a variable in void context at /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux/List/MoreUtils.pm line 362.
t/supplement.t ............ skipped: Test requires module 'DBD::mysql' but it's not found

Test Summary Report
-------------------
t/00_sqlite_manual.t    (Wstat: 4352 Tests: 86 Failed: 17)
  Failed tests:  4, 7-9, 12-19, 23, 27-29, 86
  Non-zero exit status: 17
t/02_sqlite_shortname.t (Wstat: 4352 Tests: 86 Failed: 17)
  Failed tests:  4, 7-9, 12-19, 23, 27-29, 86
  Non-zero exit status: 17
Files=9, Tests=286, 19 wallclock secs ( 0.11 usr  0.01 sys + 10.98 cusr  0.68 csys = 11.78 CPU)
Result: FAIL
Failed 2/9 test programs. 34/286 subtests failed.
make: *** [test_dynamic] Error 255

------------------------------
PREREQUISITES
------------------------------

Prerequisite modules loaded:

requires:

    Module                        Need     Have    
    ----------------------------- -------- --------
    Class::Unload                 0        0.07    
    DBICx::Modeler                0.005    0.005   
    DBIx::Class::Schema::Loader   0        0.07033 
    File::Find::Rule              0        0.33    
    List::MoreUtils               0        0.33_005
    Module::Load                  0        0.22    
    Moose                         0.89_01  2.0604  
    MooseX::Types::Path::Class    0        0.06    
    namespace::clean              0.08     0.21    
    Orochi                        0        0.00010 
    perl                          5.008001 5.014003
    Text::MicroTemplate::Extended 0        0.17    

build_requires:

    Module                        Need     Have    
    ----------------------------- -------- --------
    ExtUtils::MakeMaker           6.42     6.63_04 
    Test::Class                   0.34     0.38    
    Test::Exception               0.27     0.31    
    Test::More                    0        0.98    
    Test::Requires                0        0.06    
    Test::Warn                    0        0.24    

configure_requires:

    Module                        Need     Have    
    ----------------------------- -------- --------
    ExtUtils::MakeMaker           6.42     6.63_04 


------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------

Environment variables:

    AUTOMATED_TESTING = 1
    LANG = C
    PATH = /home/graham/perls/perl-5.14.3/bin:/home/graham/perls/perl-5.14.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/bin/core_perl
    PERL5LIB = 
    PERL5OPT = 
    PERL5_CPANPLUS_IS_RUNNING = 21010
    PERL5_CPAN_IS_RUNNING = 21010
    PERL5_CPAN_IS_RUNNING_IN_RECURSION = 15047,21010
    PERL_CR_SMOKER_CURRENT = DBICx-Modeler-Generator-0.02
    PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
    PERL_MM_USE_DEFAULT = 1
    SHELL = /bin/bash
    TERM = xterm

Perl special variables (and OS-specific diagnostics, for MSWin32):

    $^X = /home/graham/perls/perl-5.14.3/bin/perl
    $UID/$EUID = 1000 / 1000
    $GID = 100 100
    $EGID = 100 100

Perl module toolchain versions installed:

    Module              Have    
    ------------------- --------
    CPAN                1.9800  
    CPAN::Meta          2.120351
    Cwd                 3.33    
    ExtUtils::CBuilder  0.280205
    ExtUtils::Command   1.17    
    ExtUtils::Install   1.56    
    ExtUtils::MakeMaker 6.63_04 
    ExtUtils::Manifest  1.61    
    ExtUtils::ParseXS   3.18    
    File::Spec          3.33    
    JSON                2.27    
    JSON::PP            2.27008 
    Module::Build       0.4003  
    Module::Signature   0.70    
    Parse::CPAN::Meta   1.4404  
    Test::Harness       3.23    
    Test::More          0.98    
    YAML                0.73    
    YAML::Syck          1.22    
    version             0.9901  


--

Summary of my perl5 (revision 5 version 14 subversion 3) configuration:
   
  Platform:
    osname=linux, osvers=3.5.6-1-arch, archname=x86_64-linux
    uname='linux grosics 3.5.6-1-arch #1 smp preempt sun oct 7 19:30:49 cest 2012 x86_64 gnulinux '
    config_args=''
    hint=recommended, useposix=true, d_sigaction=define
    useithreads=undef, usemultiplicity=undef
    useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
    use64bitint=define, use64bitall=define, uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
  Compiler:
    cc='cc', ccflags ='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
    optimize='-O2',
    cppflags='-fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include'
    ccversion='', gccversion='4.7.2', gccosandvers=''
    intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
    alignbytes=8, prototype=define
  Linker and Libraries:
    ld='cc', ldflags =' -fstack-protector -L/usr/local/lib'
    libpth=/usr/local/lib /lib/../lib /usr/lib/../lib /lib /usr/lib
    libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat
    perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
    libc=/lib/libc-2.16.so, so=so, useshrplib=false, libperl=libperl.a
    gnulibc_version='2.16'
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
    cccdlflags='-fPIC', lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector'


Characteristics of this binary (from libperl): 
  Compile-time options: PERL_DONT_CREATE_GVSV PERL_MALLOC_WRAP
                        PERL_PRESERVE_IVUV USE_64_BIT_ALL USE_64_BIT_INT
                        USE_LARGE_FILES USE_PERLIO USE_PERL_ATOF
  Built under linux
  Compiled at Dec 10 2012 17:55:35
  %ENV:
    PERL5LIB=""
    PERL5OPT=""
    PERL5_CPANPLUS_IS_RUNNING="21010"
    PERL5_CPAN_IS_RUNNING="21010"
    PERL5_CPAN_IS_RUNNING_IN_RECURSION="15047,21010"
    PERL_CR_SMOKER_CURRENT="DBICx-Modeler-Generator-0.02"
    PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
    PERL_MM_USE_DEFAULT="1"
  @INC:
    /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3/x86_64-linux
    /home/graham/perls/perl-5.14.3/lib/site_perl/5.14.3
    /home/graham/perls/perl-5.14.3/lib/5.14.3/x86_64-linux
    /home/graham/perls/perl-5.14.3/lib/5.14.3
    .