3 # $Id: forgive.t,v 1.0.1.1 2000/09/01 19:40:42 ram Exp $
5 # Copyright (c) 1995-2000, Raphael Manfredi
7 # You may redistribute only under the same terms as Perl 5, as specified
8 # in the README file that comes with the distribution.
10 # Original Author: Ulrich Pfeifer
11 # (C) Copyright 1997, Universitat Dortmund, all rights reserved.
14 # Revision 1.0.1.1 2000/09/01 19:40:42 ram
15 # Baseline for first official release.
17 # Revision 1.0 2000/09/01 19:40:41 ram
18 # Baseline for first official release.
24 @INC = ('.', '../lib');
29 if ($File::Spec::VERSION < 0.8) {
30 print "1..0 # Skip: newer File::Spec needed\n";
33 require Config; import Config;
34 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
35 print "1..0 # Skip: Storable was not built\n";
40 use Storable qw(store retrieve);
46 my $bad = ['foo', sub { 1 }, 'bar'];
49 eval {$result = store ($bad , 'store')};
50 print ((!defined $result)?"ok $test\n":"not ok $test\n"); $test++;
51 print (($@ ne '')?"ok $test\n":"not ok $test\n"); $test++;
53 $Storable::forgive_me=1;
55 my $devnull = File::Spec->devnull;
57 open(SAVEERR, ">&STDERR");
58 open(STDERR, ">$devnull") or
59 ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) );
61 eval {$result = store ($bad , 'store')};
63 open(STDERR, ">&SAVEERR");
65 print ((defined $result)?"ok $test\n":"not ok $test\n"); $test++;
66 print (($@ eq '')?"ok $test\n":"not ok $test\n"); $test++;
68 my $ret = retrieve('store');
69 print ((defined $ret)?"ok $test\n":"not ok $test\n"); $test++;
70 print (($ret->[0] eq 'foo')?"ok $test\n":"not ok $test\n"); $test++;
71 print (($ret->[2] eq 'bar')?"ok $test\n":"not ok $test\n"); $test++;
72 print ((ref $ret->[1] eq 'SCALAR')?"ok $test\n":"not ok $test\n"); $test++;
75 END { 1 while unlink 'store' }