~ubuntu-branches/ubuntu/natty/liburi-perl/natty

« back to all changes in this revision

Viewing changes to t/storable.t

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2005-04-07 21:30:51 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050407213051-p5tx197ayyr0u93p
Tags: 1.35-1
* new upstream release (Closes: #303588, thanks to Chip Salzenberg
  <chip@debian.org> for the report)
* changed Build-Depends into Build-Depends-Indep (Closes: #274195, thanks
  to Stephen Quinney <stephen@jadevine.org.uk> for the report)
* point to license files under /usr/share/common-licenses
* removed some cruft from debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl -w
 
2
 
 
3
eval {
 
4
    require Storable;
 
5
    print "1..3\n";
 
6
};
 
7
if ($@) {
 
8
    print "1..0 # skipped: Needs the Storable module installed\n";
 
9
    exit;
 
10
}
 
11
 
 
12
system($^X, "-Iblib/lib", "t/storable-test.pl", "store");
 
13
system($^X, "-Iblib/lib", "t/storable-test.pl", "retrieve");
 
14
 
 
15
unlink('urls.sto');