package Class::Framework::Storable_TEST; # $Id: Storable_TEST.pm 11275 2006-04-26 10:53:05Z gr $ use strict; use warnings; use Error::Hierarchy::Test 'throws2_ok'; use Test::More; our $VERSION = '0.01'; use base 'Class::Framework::Test'; use constant PLAN => 1; sub run { my $self = shift; $self->SUPER::run(@_); my $obj = $self->make_real_object; throws2_ok { Class::Framework::Storable_TEST::x001->new->storage->prepare('foo'); } 'Error::Hierarchy::Internal::CustomMessage', qr/can't find method to get storage object from delegate/, 'using non-existing storage'; } package Class::Framework::Storable_TEST::x001; use base 'Class::Framework::Storable'; 1; __END__ =head1 NAME Class::Framework - large-scale OOP application support =head1 SYNOPSIS None yet (see below). =head1 DESCRIPTION None yet. This is an early release; fully functional, but undocumented. The next release will have more documentation. =head1 TAGS If you talk about this module in blogs, on del.icio.us or anywhere else, please use the C tag. =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests to C, or through the web interface at L. =head1 INSTALLATION See perlmodinstall for information and options on installing Perl modules. =head1 AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit to find a CPAN site near you. Or see . =head1 AUTHORS Marcel GrEnauer, C<< >> Florian Helmberger C<< >> Achim Adam C<< >> Mark Hofstetter C<< >> Heinz Ekker C<< >> =head1 COPYRIGHT AND LICENSE Copyright 2007 by Marcel GrEnauer This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut