1
0
mirror of synced 2026-04-24 19:50:09 +00:00

Skip Xen::Tools tests

Those modules are not used for now.
This commit is contained in:
Stéphane Jourdois
2010-07-11 12:44:06 +02:00
committed by Stéphane Jourdois
parent 4b58d7a1c4
commit c0c5c3a8f4
2 changed files with 13 additions and 7 deletions

View File

@@ -7,11 +7,14 @@ use File::Temp;
use Xen::Tools::Log;
my $dir = File::Temp::tempdir( CLEANUP => 1 );
SKIP: {
skip "Xen::Tools::Log is not used for now", 1;
my $xtl = Xen::Tools::Log->new( hostname => 'xen-tools-log-test',
logpath => $dir,
);
my $dir = File::Temp::tempdir( CLEANUP => 1 );
ok( $xtl->isa('Xen::Tools::Log') );
my $xtl = Xen::Tools::Log->new( hostname => 'xen-tools-log-test',
logpath => $dir,
);
ok( $xtl->isa('Xen::Tools::Log') );
}

View File

@@ -10,6 +10,9 @@ use Test::More tests => 1;
use Xen::Tools;
my $xt = Xen::Tools->new( hostname => 'xen-tools-test' );
SKIP: {
skip "Xen::Tools is not used for now", 1;
ok( $xt->isa('Xen::Tools') );
my $xt = Xen::Tools->new( hostname => 'xen-tools-test' );
ok( $xt->isa('Xen::Tools') );
}