The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Pragmas.
use strict;
use warnings;

# Modules.
use Config::Utils qw(conflict);
use English qw(-no_match_vars);
use Test::More 'tests' => 2;

# Test.
my $self = {
	'stack' => [],
};
eval {
	conflict($self, {'key' => 'value'}, 'key');
};
is($EVAL_ERROR, '');

# Test.
$self->{'set_conflicts'} = 1;
eval {
	conflict($self, {'key' => 'value'}, 'key');
};
is($EVAL_ERROR, "Conflict in 'key'.\n");