diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | t/Nagios-Plugin-05.t | 16 |
2 files changed, 17 insertions, 0 deletions
@@ -3,6 +3,7 @@ Revision history for Perl module Nagios::Plugin. | |||
3 | 0.34 15th April 2010 | 3 | 0.34 15th April 2010 |
4 | - Amended standard --extra-opts help | 4 | - Amended standard --extra-opts help |
5 | - pod fix (Frank Wiegand - RT51872) | 5 | - pod fix (Frank Wiegand - RT51872) |
6 | - Added %STATUS_TEXT to valid possible exports (Andrew Ford - RT46048) | ||
6 | 7 | ||
7 | 0.33 5th June 2009 | 8 | 0.33 5th June 2009 |
8 | - Fixed infinite loop when invalid performance data with multiple = were present | 9 | - Fixed infinite loop when invalid performance data with multiple = were present |
diff --git a/t/Nagios-Plugin-05.t b/t/Nagios-Plugin-05.t new file mode 100644 index 0000000..cc602cc --- /dev/null +++ b/t/Nagios-Plugin-05.t | |||
@@ -0,0 +1,16 @@ | |||
1 | # Check for exported vars | ||
2 | # Can't include Nagios::Plugin::Functions because it also exports %STATUS_TEXT | ||
3 | |||
4 | use strict; | ||
5 | use Test::More tests=>4; | ||
6 | |||
7 | BEGIN { use_ok('Nagios::Plugin') }; | ||
8 | |||
9 | eval ' $_ = $STATUS_TEXT{0} '; | ||
10 | like( $@, '/Global symbol "%STATUS_TEXT" requires explicit package name/' ); | ||
11 | |||
12 | use_ok("Nagios::Plugin", qw(%STATUS_TEXT)); | ||
13 | |||
14 | eval ' $_ = $STATUS_TEXT{0} '; | ||
15 | is( $@, '' ); | ||
16 | |||