AIX-Perfstat

 view release on metacpan or  search on metacpan

t/AIX-Perfstat.t  view on Meta::CPAN

#
#
# Copyright (C) 2006 by Richard Holden
#
# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
#######################################################################

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl AIX-Perfstat.t'

#########################

use Test::More;
BEGIN { use_ok('AIX::Perfstat') };

#########################


use AIX::Perfstat;

########################
#Compute number of tests to run.

plan tests => @AIX::Perfstat::METHODS + 0;

########################

foreach my $method (@AIX::Perfstat::METHODS)
{
	can_ok('AIX::Perfstat', $method);
}



( run in 2.802 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )