Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 0496c0cd6a0fbc54e2f38c6fdd3bc0bb > files > 11

perl-Test-Inter-1.01-3.fc15.noarch.rpm

#!/usr/bin/perl

use strict;
use warnings;

use vars qw($o);

BEGIN {
  print "The first test will fail, all others will be skipped.\n\n";
  use Test::Inter;
  $o = new Test::Inter;
}

BEGIN { $o->use_ok('Xxx::Yyy'); }

$o->ok();
$o->ok( 1 == 1 );
$o->ok( 1 == 2 );

$o->done_testing();