File: 00logger.t

package info (click to toggle)
libvcp-perl 0.9-20041020-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,608 kB
  • ctags: 833
  • sloc: perl: 18,190; sh: 11
file content (24 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/local/bin/perl -w

=head1 NAME

00logger.t - See if the logger compiles properly.

=cut

use strict ;

use Carp ;
use Test ;
use VCP::Logger qw( lg );

## TODO: Add lots of tests to 00rev.t

my @tests = (
## Test some utility functions first
sub { lg "logger test"; ok 1; },
) ;

plan tests => scalar( @tests ) ;

$_->() for @tests ;