Documenting HTML::Zoom::FilterBuilder further
[catagits/HTML-Zoom.git] / t / doctype.t
CommitLineData
4b4f6408 1use strict;
2use warnings FATAL => 'all';
3use Test::More qw(no_plan);
4
5use HTML::Zoom;
6my $template = <<HTML;
7<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
8<html></html>
9HTML
10
11my $output = HTML::Zoom
12 ->from_html($template)->to_html;
13my $expect = <<HTML;
14<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
15<html></html>
16HTML
17is($output, $expect, 'Synopsis code works ok');;