File: table-header.t

package info (click to toggle)
libhtml-formattext-withlinks-andtables-perl 0.07-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 152 kB
  • sloc: perl: 290; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use HTML::FormatText::WithLinks::AndTables;
use Test::More tests => 1;
my $html ='<table>
<tr>
   <th>header1</th>
</tr>
</table>';

my $text = HTML::FormatText::WithLinks::AndTables->convert($html, {rm=>80,cellpadding=>2});
my $expected = '     header1

';
#print "expected: $expected\n";
#print "got: $text\n";
ok($expected eq $text,"table header displayed");