1
0
mirror of synced 2026-05-01 22:26:08 +00:00
Files
xen-tools.xen-tools/t/xen-tools.t
Stéphane Jourdois bd840ba071 Replace tabs with spaces
This makes t/no-tabs.t pass.
I'm responsible for some tabs in previous patches, so this
fixes mine also :)

Note that I find this test silly, but "dura lex, sed lex"...
2010-07-16 16:27:42 +02:00

19 lines
318 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;
use Xen::Tools;
SKIP: {
skip "Xen::Tools is not used for now", 1;
my $xt = Xen::Tools->new( hostname => 'xen-tools-test' );
ok( $xt->isa('Xen::Tools') );
}