added directory index needed for porteus config to boot
[pxelator] / lib / PXElator / t / ping.t
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5 use autodie;
6
7 use Test::More tests => 3;
8
9 use_ok 'ping';
10
11 ok( ping::host( 'localhost' ), 'ping' );
12
13 ok( ping::fping( qw/localhost 127.0.0.1 192.168.1.1 172.16.10.1/ ), 'fping' );
14