File: 03ns.t

package info (click to toggle)
libunicode-linebreak-perl 0.0.20190101-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,064 kB
  • sloc: perl: 782; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use Test::More;

use FindBin;
use lib "$FindBin::Bin/..";
require "t/lb.pl";

BEGIN { plan tests => 2 }

dotest('ja-k', 'ja-k', ColumnsMax => 72);
dotest('ja-k', 'ja-k.ns', LBClass => [KANA_NONSTARTERS() => LB_ID()],
       ColumnsMax => 72);
## obsoleted option.
#dotest('ja-k', 'ja-k.ns', LBClass => [[0x3041..0x30A0] => LB_NS()],
#       TailorLB => [KANA_NONSTARTERS() => LB_ID()],
#       ColumnsMax => 72);

1;