File: clean.t

package info (click to toggle)
libhtml-tidy5-perl 1.06-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: perl: 1,853; makefile: 14
file content (45 lines) | stat: -rw-r--r-- 764 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl -T

use 5.010001;
use strict;
use warnings;

use Test::Exception;
use Test::More tests => 3;

use HTML::Tidy5;

use lib 't';

use TidyTestUtils;


my $tidy = HTML::Tidy5->new( { wrap => 0 } );
isa_ok( $tidy, 'HTML::Tidy5' );

my $expected_pattern = 'Usage: clean($str [, $str...])';
throws_ok {
    $tidy->clean();
} qr/\Q$expected_pattern\E/,
'clean() croaks when not given a string or list of strings';

my $actual = $tidy->clean('');
$actual = remove_specificity( $actual );

my $expected_empty_html = <<'HERE';
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="TIDY">
<title></title>
</head>
<body>
</body>
</html>
HERE

is( $actual, $expected_empty_html, '$tidy->clean("") returns empty HTML document' );


done_testing();
exit 0;