source: trunk/essentials/dev-lang/perl/lib/Test/Harness/Assert.pm@ 3368

Last change on this file since 3368 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 958 bytes
Line 
1# $Id: Assert.pm 250 2003-09-11 15:57:29Z andy $
2
3package Test::Harness::Assert;
4
5use strict;
6require Exporter;
7use vars qw($VERSION @EXPORT @ISA);
8
9$VERSION = '0.02';
10
11@ISA = qw(Exporter);
12@EXPORT = qw(assert);
13
14
15=head1 NAME
16
17Test::Harness::Assert - simple assert
18
19=head1 SYNOPSIS
20
21 ### FOR INTERNAL USE ONLY ###
22
23 use Test::Harness::Assert;
24
25 assert( EXPR, $name );
26
27=head1 DESCRIPTION
28
29A simple assert routine since we don't have Carp::Assert handy.
30
31B<For internal use by Test::Harness ONLY!>
32
33=head1 FUNCTIONS