shlist

share and manage lists between multiple people
Log | Files | Refs

commit b8fd456ba81d16333fff6c8b23e38584c9edeeae
parent 87f6c4d29d1aa332cc6797c1db01406c47d745ba
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 27 Feb 2016 13:30:51 -0700

server: add another testcase

Diffstat:
Mserver/t/header.t | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/server/t/header.t b/server/t/header.t @@ -30,4 +30,8 @@ $client->send_all(pack('nnnZ*', 0, 0, 5, 'ab'), 9); $client = SL::Client->new(1); $client->send_all(pack('nn', 101, 69), 4); +# Zero bytes payload +$client = SL::Client->new(1); +$client->send_all(pack('nnn', 0, 0, 0), 6); + ok(1);