Codebase list libtest-inter-perl / 77c006ce-30b0-49c7-8114-8c521434ac77/upstream examples / plan
77c006ce-30b0-49c7-8114-8c521434ac77/upstream

Tree @77c006ce-30b0-49c7-8114-8c521434ac77/upstream (Download .tar.gz)

plan @77c006ce-30b0-49c7-8114-8c521434ac77/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();