File: empty_row.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 (22 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

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

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

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