Codebase list libtest-inter-perl / upstream/1.09 examples / plan
upstream/1.09

Tree @upstream/1.09 (Download .tar.gz)

plan @upstream/1.09raw · history · blame

#!/usr/bin/perl

use strict;
use warnings;
use Test::Inter;

my $o = new Test::Inter;

print "The following script will fail due to multiple plans\n\n";

$o->plan(2);
$o->plan(5);
$o->done_testing();