Remove $Id$ lines.
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / forgive.t
CommitLineData
7a6a85bf 1#!./perl
7a6a85bf 2#
3# Copyright (c) 1995-2000, Raphael Manfredi
4#
9e21b3d0 5# You may redistribute only under the same terms as Perl 5, as specified
6# in the README file that comes with the distribution.
7a6a85bf 7#
8# Original Author: Ulrich Pfeifer
9# (C) Copyright 1997, Universitat Dortmund, all rights reserved.
10#
7a6a85bf 11
12sub BEGIN {
0c384302 13 if ($ENV{PERL_CORE}){
14 chdir('t') if -d 't';
372cb964 15 @INC = ('.', '../lib');
16 } else {
17 unshift @INC, 't';
18 }
19 require File::Spec;
20 if ($File::Spec::VERSION < 0.8) {
21 print "1..0 # Skip: newer File::Spec needed\n";
22 exit 0;
0c384302 23 }
9f233367 24 require Config; import Config;
0c384302 25 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
9f233367 26 print "1..0 # Skip: Storable was not built\n";
27 exit 0;
28 }
7a6a85bf 29}
30
31use Storable qw(store retrieve);
372cb964 32
7a6a85bf 33
34print "1..8\n";
35
36my $test = 1;
37my $bad = ['foo', sub { 1 }, 'bar'];
38my $result;
39
40eval {$result = store ($bad , 'store')};
41print ((!defined $result)?"ok $test\n":"not ok $test\n"); $test++;
42print (($@ ne '')?"ok $test\n":"not ok $test\n"); $test++;
43
44$Storable::forgive_me=1;
45
29fc1735 46my $devnull = File::Spec->devnull;
47
7a6a85bf 48open(SAVEERR, ">&STDERR");
f42118b2 49open(STDERR, ">$devnull") or
7a6a85bf 50 ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) );
51
52eval {$result = store ($bad , 'store')};
53
54open(STDERR, ">&SAVEERR");
55
56print ((defined $result)?"ok $test\n":"not ok $test\n"); $test++;
57print (($@ eq '')?"ok $test\n":"not ok $test\n"); $test++;
58
59my $ret = retrieve('store');
60print ((defined $ret)?"ok $test\n":"not ok $test\n"); $test++;
61print (($ret->[0] eq 'foo')?"ok $test\n":"not ok $test\n"); $test++;
62print (($ret->[2] eq 'bar')?"ok $test\n":"not ok $test\n"); $test++;
63print ((ref $ret->[1] eq 'SCALAR')?"ok $test\n":"not ok $test\n"); $test++;
64
65
29fc1735 66END { 1 while unlink 'store' }