diff options
author | Sven Nierlein <sven@nierlein.de> | 2014-01-19 23:54:34 (GMT) |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2014-01-19 23:54:34 (GMT) |
commit | b418181dfe80dd75169b6e8a619ac1932155dea2 (patch) | |
tree | cad9c0ae0eae8e800cfff60555ead06ad33c6856 /t/Nagios-Plugin-05.t | |
parent | 1cd8d1c52cbd47121f344c4074aec84653f412ce (diff) | |
download | monitoring-plugin-perl-b418181dfe80dd75169b6e8a619ac1932155dea2.tar.gz |
renamed module into Monitoring::Plugin
since the complete monitoring team has been renamed, we
also rename this module.
Signed-off-by: Sven Nierlein <sven@nierlein.de>
Diffstat (limited to 't/Nagios-Plugin-05.t')
-rw-r--r-- | t/Nagios-Plugin-05.t | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/t/Nagios-Plugin-05.t b/t/Nagios-Plugin-05.t deleted file mode 100644 index cc602cc..0000000 --- a/t/Nagios-Plugin-05.t +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
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 | |||