Skip Menu |

This queue is for tickets about the POE CPAN distribution.

Report information
The Basics
Id: 19447
Status: resolved
Priority: 0/
Queue: POE

People
Owner: RCAPUTO [...] cpan.org
Requestors: MERLYN [...] cpan.org
Cc:
AdminCc:

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



Subject: POE::Queue::Array is not subclassable - broken constructor
POE::Queue::Array contains sub new { bless []; } and should have been sub new { bless [], shift; } Otherwise, POE::Queue::Array is not subclassable.
On Tue May 23 12:51:39 2006, MERLYN wrote: Show quoted text
> POE::Queue::Array contains > > sub new { > bless []; > } > > and should have been > > sub new { > bless [], shift; > } > > Otherwise, POE::Queue::Array is not subclassable.
Test by: use Test::More no_plan; use POE::Queue::Array; @My::Test::Class::ISA = qw(POE::Queue::Array); isa_ok my $x = My::Test::Class->new, 'My::Test::Class';