]> git.vpit.fr Git - perl/modules/IPC-MorseSignals.git/blob - t/10-proto.t
Importing IPC-MorseSignals-0.07.tar.gz
[perl/modules/IPC-MorseSignals.git] / t / 10-proto.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 2;
7
8 use lib 't/lib';
9 use IPCMTest qw/try init cleanup/;
10
11 init;
12
13 ok(try('x', 0), 'anonymous');
14 ok(try('x', 1), 'signed');
15
16 cleanup;