summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-08-31 08:34:24 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-08-31 08:34:24 (GMT)
commitf2aa8f510828ddfb165f84ecc13aaf29d7bdfb4d (patch)
treeb5445def675470d2eae0d61ed159b3b59b3dae11 /t
parent2b422c372ee109303984ca8bac6f5ea3d5976dc0 (diff)
downloadmonitoring-plugin-perl-f2aa8f510828ddfb165f84ecc13aaf29d7bdfb4d.tar.gz
Support multiple -v options for verbosity level
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1472 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 't')
-rw-r--r--t/Nagios-Plugin-Getopt-01.t13
1 files changed, 12 insertions, 1 deletions
diff --git a/t/Nagios-Plugin-Getopt-01.t b/t/Nagios-Plugin-Getopt-01.t
index fad68e3..b708a5f 100644
--- a/t/Nagios-Plugin-Getopt-01.t
+++ b/t/Nagios-Plugin-Getopt-01.t
@@ -2,7 +2,7 @@
2 2
3use strict; 3use strict;
4 4
5use Test::More tests => 72; 5use Test::More tests => 76;
6BEGIN { use_ok('Nagios::Plugin::Getopt') }; 6BEGIN { use_ok('Nagios::Plugin::Getopt') };
7 7
8my %PARAM = ( 8my %PARAM = (
@@ -45,6 +45,17 @@ is($ng->warning, 3, 'warning set to 3');
45is($ng->critical, 10, 'critical set to 10'); 45is($ng->critical, 10, 'critical set to 10');
46is($ng->timeout, 12, 'timeout set to 12'); 46is($ng->timeout, 12, 'timeout set to 12');
47 47
48# Check multiple verbose flags
49@ARGV = qw(-w 3 --critical 10 -v -v -v);
50$ng = setup;
51$ng->getopts;
52is ($ng->verbose, 3, "Verbose set to level 3");
53
54@ARGV = qw(-w 3 --critical 10 --verbose --verbose --verbose);
55$ng = setup;
56$ng->getopts;
57is ($ng->verbose, 3, "Verbose set to level 3 (longhand)");
58
48# Missing args 59# Missing args
49@ARGV = qw(); 60@ARGV = qw();
50$ng = setup; 61$ng = setup;