Codebase list libtest-inter-perl / run/123ed5a7-d6c6-4323-b658-b0a21749d78f/main examples / plan
run/123ed5a7-d6c6-4323-b658-b0a21749d78f/main

Tree @run/123ed5a7-d6c6-4323-b658-b0a21749d78f/main (Download .tar.gz)

plan @run/123ed5a7-d6c6-4323-b658-b0a21749d78f/mainraw · 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();