1
0
mirror of synced 2026-01-26 19:51:56 +00:00
Files
xen-tools.xen-tools/t/xen-tools-log.t.disabled
Axel Beckert 8ba16d0e7a Disable tests of not yet used Xen::Tools perl modules.
Fixes FTBFS in test suite due to not satisifed Moose dependency in
Xen::Tools::Log.
2012-06-08 17:37:28 +02:00

16 lines
380 B
Perl
Executable File

#!/usr/bin/perl -I../lib -I./lib
use strict;
use warnings;
use Test::More tests => 1, skip_all => 'Xen::Tools::Log is not used for now';
use File::Temp;
use Xen::Tools::Log;
my $dir = File::Temp::tempdir( CLEANUP => 1 );
my $xtl = Xen::Tools::Log->new( hostname => 'xen-tools-log-test',
logpath => $dir );
ok( $xtl->isa('Xen::Tools::Log') );