On Feb 12, 2008 3:26 PM, Sam Tregar <[EMAIL PROTECTED]> wrote:
> Yes.  I can whip up a simple test case if need be.  Let me know if that
> would help.

Yes, that'd help because I can't reproduce it.  I added a bit to
t/db-object-helpers.t to try:

    $o = $class->new(id => 1)->load_or_save;

    eval { $o->nonesuch };
    print STDERR "Pre-freeze: [EMAIL PROTECTED]";

    my $frozen = Storable::freeze($o->strip);

    my $thawed = Storable::thaw($frozen);

    is_deeply($thawed, $o, "strip 1 - $db_type");

    eval { $thawed->nonesuch };
    print STDERR "Post-freeze: [EMAIL PROTECTED]";

and I got the same error pre- and post-freeze: "Can't locate object
method "nonesuch" via package ..."

-John

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Rose-db-object mailing list
Rose-db-object@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rose-db-object

Reply via email to