File: 09uri.t

package info (click to toggle)
libunicode-linebreak-perl 0.0.20140601-2%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 4,124 kB
  • ctags: 1,278
  • sloc: ansic: 32,274; perl: 783; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use Test::More;
require "t/lb.pl";

BEGIN { plan tests => 2 }

dotest('uri', 'uri.break', ColumnsMax => 1, Prep => 'BREAKURI');
dotest('uri', 'uri.nonbreak', ColumnsMax => 1, Prep => 'NONBREAKURI');
## Obsoleted options
#dotest('uri', 'uri.break', ColumnsMax => 1, UserBreaking => ['BREAKURI']);
#dotest('uri', 'uri.nonbreak', ColumnsMax => 1, UserBreaking => ['NONBREAKURI']);


1;