1
0
mirror of synced 2026-05-03 14:58:48 +00:00
Files
xen-tools.xen-tools/t/xen-tools.t
Stéphane Jourdois 660569dffe Use skip_all rather than SKIP block
This makes prove t output less verbose
2010-07-16 16:56:24 +02:00

15 lines
295 B
Perl
Executable File

#!/usr/bin/perl -I../lib -I./lib
#
# Test we can load the (stub) Xen::Tools package.
#
use strict;
use warnings;
use Test::More tests => 1, skip_all => 'Xen::Tools is not used for now';
use Xen::Tools;
my $xt = Xen::Tools->new( hostname => 'xen-tools-test' );
ok( $xt->isa('Xen::Tools') );