21 lines
543 B
Perl
21 lines
543 B
Perl
#!/usr/bin/perl
|
|
#
|
|
# Check that no contactgroup gives the correct message
|
|
|
|
use warnings;
|
|
use strict;
|
|
use Test::More qw(no_plan);
|
|
use FindBin qw($Bin);
|
|
|
|
chdir $Bin or die "Cannot chdir";
|
|
|
|
my $topdir = "$Bin/..";
|
|
my $nagios = "$topdir/base/nagios";
|
|
my $etc = "$Bin/etc";
|
|
my $precache = "$Bin/var/objects.precache";
|
|
|
|
|
|
my $output = `$nagios -v "$etc/nagios-no-contactgroup.cfg"`;
|
|
like( $output, "/Error: Could not find any contactgroup matching 'nonexistentone'/", "Correct error for no contactgroup" );
|
|
isnt($?, 0, "And get return code error" );
|