#!/usr/bin/env perl -w -I ..
#
# ... Tests via check_template-IO.pl
#
# $Id: check_template-IO.t, v 1.0 2006/03/18 Alex Peeters Exp $
#
use strict;
use Test;
use vars qw($tests);
BEGIN {$tests = 3; plan tests => $tests}
my $t;
my $prefix = '../plugins/templates';
my $plugin = 'check_template-IO.pl';
if ( -x "$prefix/$plugin" ) {
$t += checkCmd( "$prefix/$plugin -V", 3, "/$plugin/");
$t += checkCmd( "$prefix/$plugin -h", 3);
}
exit(0) if defined($Test::Harness::VERSION);
exit($tests - $t);