summaryrefslogtreecommitdiffstats
path: root/t/Nagios-Plugin-05.t
diff options
context:
space:
mode:
Diffstat (limited to 't/Nagios-Plugin-05.t')
-rw-r--r--t/Nagios-Plugin-05.t16
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
4use strict;
5use Test::More tests=>4;
6
7BEGIN { use_ok('Nagios::Plugin') };
8
9eval ' $_ = $STATUS_TEXT{0} ';
10like( $@, '/Global symbol "%STATUS_TEXT" requires explicit package name/' );
11
12use_ok("Nagios::Plugin", qw(%STATUS_TEXT));
13
14eval ' $_ = $STATUS_TEXT{0} ';
15is( $@, '' );
16