File: empty_td_warning.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 (19 lines) | stat: -rw-r--r-- 385 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
#!/usr/bin/perl

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

{
   my @warnings;
   local $SIG{__WARN__} = sub {
      push @warnings, @_;
   };
   my $text = HTML::FormatText::WithLinks::AndTables->convert($html, {rm=>80,cellpadding=>2});
   ok(scalar(@warnings == 0),"no warnings from empty cell");
}