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

use Test::More;
use Test::MockModule;

BEGIN {
        use_ok('Tapper::Remote::Config');
 }

my $cfg = Tapper::Remote::Config->new();

$ARGV[0]="--config=t/files/config.yml";
my $retval = $cfg->get_local_data("test-prc0");
is($retval->{hostname}, 'affe', 'Hostname stays intact for Xen guest PRC');

done_testing;