]> git.vpit.fr Git - perl/modules/IPC-MorseSignals.git/blob - t/11-ascii.t
Importing IPC-MorseSignals-0.07.tar.gz
[perl/modules/IPC-MorseSignals.git] / t / 11-ascii.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 4;
7
8 use lib 't/lib';
9 use IPCMTest qw/try init cleanup/;
10
11 init;
12
13 ok(try('hello'), 'ascii');
14 ok(try("\0" x 5), 'few bits');
15 ok(try("\x{FF}" x 5), 'lots of bits');
16 ok(try("a\0b"), 'null character');
17
18 cleanup;