summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/Nagios-Plugin.t9
1 files changed, 8 insertions, 1 deletions
diff --git a/t/Nagios-Plugin.t b/t/Nagios-Plugin.t
index 8921dc5..213e514 100644
--- a/t/Nagios-Plugin.t
+++ b/t/Nagios-Plugin.t
@@ -1,6 +1,6 @@
1 1
2use strict; 2use strict;
3use Test::More tests => 9; 3use Test::More tests => 12;
4 4
5BEGIN { use_ok('Nagios::Plugin') }; 5BEGIN { use_ok('Nagios::Plugin') };
6 6
@@ -13,6 +13,13 @@ my $p = Nagios::Plugin->new;
13isa_ok( $p, "Nagios::Plugin"); 13isa_ok( $p, "Nagios::Plugin");
14 14
15$p->shortname("PAGESIZE"); 15$p->shortname("PAGESIZE");
16is($p->shortname, "PAGESIZE", "shortname set correctly");
17
18$p = Nagios::Plugin->new;
19ok(! defined $p->shortname, "shortname should be unset on new");
20
21$p = Nagios::Plugin->new( shortname => "SIZE" );
22is($p->shortname, "SIZE", "shortname set correctly on new");
16 23
17diag "warn if < 10, critical if > 25 " if $ENV{TEST_VERBOSE}; 24diag "warn if < 10, critical if > 25 " if $ENV{TEST_VERBOSE};
18my $t = $p->set_thresholds( warning => "10:25", critical => "~:25" ); 25my $t = $p->set_thresholds( warning => "10:25", critical => "~:25" );