mirror of
https://frontier.innolan.net/rainlance/amiga-fping.git
synced 2025-11-23 01:08:38 +00:00
more tests
This commit is contained in:
19
ci/test-13-unknown-host.pl
Executable file
19
ci/test-13-unknown-host.pl
Executable file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use Test::Command tests => 6;
|
||||
|
||||
# fping
|
||||
{
|
||||
my $cmd = Test::Command->new(cmd => "fping nosuchname.example.com");
|
||||
$cmd->exit_is_num(1);
|
||||
$cmd->stdout_is_eq("");
|
||||
$cmd->stderr_is_eq("nosuchname.example.com address not found\n");
|
||||
}
|
||||
|
||||
# fping6
|
||||
{
|
||||
my $cmd = Test::Command->new(cmd => "fping6 nosuchname.example.com");
|
||||
$cmd->exit_is_num(1);
|
||||
$cmd->stdout_is_eq("");
|
||||
$cmd->stderr_is_eq("nosuchname.example.com: Name or service not known\n");
|
||||
}
|
||||
Reference in New Issue
Block a user