Codebase list libtest-inter-perl / 7aa1d9dc-bdad-4cf0-89c3-e8e9449434d6/main examples / plan
7aa1d9dc-bdad-4cf0-89c3-e8e9449434d6/main

Tree @7aa1d9dc-bdad-4cf0-89c3-e8e9449434d6/main (Download .tar.gz)

plan @7aa1d9dc-bdad-4cf0-89c3-e8e9449434d6/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();