summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/01-basic.t b/t/01-basic.t
index 73e0c26..95e4059 100644
--- a/t/01-basic.t
+++ b/t/01-basic.t
@@ -7,7 +7,7 @@ use IO::Pty::Easy;
BEGIN {
eval "use Test::TCP;";
plan skip_all => "Test::TCP is required for this test" if $@;
- plan tests => 3;
+ plan tests => 4;
}
test_tcp(
@@ -37,6 +37,9 @@ EOF
$client->recv($login, 4096);
is($login, "hello test tset\n", 'got the correct login info');
$client->send("hello, test\n");
+ my $metadata;
+ $client->recv($metadata, 4096);
+ ok($metadata, 'metadata successfully sent');
my $output;
$client->recv($output, 4096);
is($output, "foo", 'sent the right data to the server');