1
0
mirror of synced 2026-02-06 16:04:50 +00:00
Files
xen-tools.xen-tools/t/xen-tools.t
steve 47c7161386 2007-09-04 20:30:25 by steve
Added new tests for our modular code.
2007-09-04 20:30:25 +00:00

16 lines
250 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;
my $xt = Xen::Tools->new( hostname => 'xen-tools-test' );
ok( $xt->isa('Xen::Tools') );