File: import.t

package info (click to toggle)
libtest-block-perl 0.13-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 133; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;
use Test::More tests => 3;

BEGIN { use_ok 'Test::Block', qw($Plan) };

{
	local $Plan = 2;
	isa_ok( $Plan, 'Test::Block', '$Plan' );
	is $Plan, 1, '$Plan holds remaining number of tests';
}