Codebase list libtest-inter-perl / fe3c3283-0497-43fa-bdcc-84417e7b1efa/upstream examples / plan
fe3c3283-0497-43fa-bdcc-84417e7b1efa/upstream

Tree @fe3c3283-0497-43fa-bdcc-84417e7b1efa/upstream (Download .tar.gz)

plan @fe3c3283-0497-43fa-bdcc-84417e7b1efa/upstreamraw · 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();