Skip Menu |

This queue is for tickets about the MojoX-Logite CPAN distribution.

Report information
The Basics
Id: 101612
Status: new
Priority: 0/
Queue: MojoX-Logite

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

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Several tests fail
See http://mojo.perl-services.de In t/03_plugin.t the line <% my @rows = $logite->package_table->select( 'where l_level = ?', $level); %> should be % my @rows = $logite->package_table->select( 'where l_level = ?', $level); and in t/01_logite.t is ( $logite->package_table eq 'Foo::Bar::Log::Logitetable', 1, "package table match"); should be is ( $logite->package_table, 'Foo::Bar::Log::LogiteTable', "package table match"); I saw, that you always use is( xxxx eq yyyyy, 1, 'description'); better use is( xxxx, yyyy, 'description'); as this is more readable... and it gives better output when a test is failing.