| Test-DBIx-Class documentation | Contained in the Test-DBIx-Class distribution. |
Test::DBIx::Class::Example::Schema::ResultSet - A base ResultSet Class
use base 'Test::DBIx::Class::Example::Schema::ResultSet';
All ResultSet classes will inherit from this.
The following modules or resources may be of interest.
John Napiorkowski <jjnapiork@cpan.org>
Copyright 2009, John Napiorkowski <jjnapiork@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Test-DBIx-Class documentation | Contained in the Test-DBIx-Class distribution. |
package Test::DBIx::Class::Example::Schema::ResultSet; { use strict; use warnings; use base 'DBIx::Class::ResultSet'; sub hri_dump { (shift)->search ({}, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' }); } } 1 __END__