Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-DBIx-Class-Schema CPAN distribution.

Report information
The Basics
Id: 53825
Status: resolved
Worked: 1.5 hours (90 min)
Priority: 0/
Queue: Test-DBIx-Class-Schema

People
Owner: chisel [...] chizography.net
Requestors: chisel [...] chizography.net
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.01006
Fixed in: 0.01007



Subject: Doesn't play nicely with ::Result namespace 'hack'
ASH modified some DBIC loading to work better with classes under a MySchema::Result::/MySchema::ResultSet:: layout. This breaks the ISA test, but can be easily resolved with a tweak: # run tests on real records if (defined $self->{glue}) { isa_ok( $record, $self->{namespace} . '::' . $self->{glue} . '::' . $self->{moniker} ); } else { isa_ok($record, $self->{namespace} . '::' . $self->{moniker}); }
Should add tests and POD, but the code fix is there now.