File: countdown.t

package info (click to toggle)
libhtml-truncate-perl 0.20-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 292 kB
  • ctags: 154
  • sloc: perl: 2,339; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 1,887 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!perl
use strict;

use Test::More tests => 27;

use FindBin;
use File::Spec;
use lib File::Spec->catfile($FindBin::Bin, 'lib');
use HTML::Truncate;

print $HTML::Truncate::VERSION, $/;

my $ht = HTML::Truncate->new();
$ht->ellipsis('...');

my $html = '<p><i>We</i> have to test <b>something</b>.</p>';

my $test = [
    1 => '<p><i>W...</i></p>',
    2 => '<p><i>We...</i></p>',
    3 => '<p><i>We</i>...</p>',
    4 => '<p><i>We</i> h...</p>',
    5 => '<p><i>We</i> ha...</p>',
    6 => '<p><i>We</i> hav...</p>',
    7 => '<p><i>We</i> have...</p>',
    8 => '<p><i>We</i> have...</p>',
    9 => '<p><i>We</i> have t...</p>',
    10 => '<p><i>We</i> have to...</p>',
    11 => '<p><i>We</i> have to...</p>',
    12 => '<p><i>We</i> have to t...</p>',
    13 => '<p><i>We</i> have to te...</p>',
    14 => '<p><i>We</i> have to tes...</p>',
    15 => '<p><i>We</i> have to test...</p>',
    16 => '<p><i>We</i> have to test...</p>',
    17 => '<p><i>We</i> have to test <b>s...</b></p>',
    18 => '<p><i>We</i> have to test <b>so...</b></p>',
    19 => '<p><i>We</i> have to test <b>som...</b></p>',
    20 => '<p><i>We</i> have to test <b>some...</b></p>',
    21 => '<p><i>We</i> have to test <b>somet...</b></p>',
    22 => '<p><i>We</i> have to test <b>someth...</b></p>',
    23 => '<p><i>We</i> have to test <b>somethi...</b></p>',
    24 => '<p><i>We</i> have to test <b>somethin...</b></p>',
    25 => '<p><i>We</i> have to test <b>something...</b></p>',
    26 => '<p><i>We</i> have to test <b>something</b>...</p>',
    27 => '<p><i>We</i> have to test <b>something</b>.</p>',
];


while ( my( $key, $val ) = splice @{$test}, 0, 2 ){
    $ht->chars( $key );
    my $result;
    is( $result = $ht->truncate( $html ), $val,
        $result );
#    diag( $key . ' ' . $ht->truncate( $html ) ) if $ENV{TEST_VERBOSE};
}