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