Codebase list libtest-inter-perl / 0aa40d12-59da-4612-9477-3c0a8ba5e29e/upstream examples / plan
0aa40d12-59da-4612-9477-3c0a8ba5e29e/upstream

Tree @0aa40d12-59da-4612-9477-3c0a8ba5e29e/upstream (Download .tar.gz)

plan @0aa40d12-59da-4612-9477-3c0a8ba5e29e/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();