Codebase list libtest-inter-perl / e5af4648-296e-4305-b1f3-2fbb648dcb69/main t / use_ok.2.t
e5af4648-296e-4305-b1f3-2fbb648dcb69/main

Tree @e5af4648-296e-4305-b1f3-2fbb648dcb69/main (Download .tar.gz)

use_ok.2.t @e5af4648-296e-4305-b1f3-2fbb648dcb69/mainraw · history · blame

#!/usr/bin/perl

use warnings 'all';
use strict;
my $ti;

BEGIN {
   if (-d "lib") {
      use lib "./lib";
   } elsif (-d "../lib") {
      use lib "../lib";
   }

   use Test::Inter;
   $ti = new Test::Inter $0;

   $ti->use_ok('7.001','forbid'); 
   $ti->use_ok('Config','myconfig'); 
   $ti->use_ok('Storable',1.01,'dclone'); 
}
$ti->done_testing();