#!/usr/bin/perl -w use strict; use Test::More; use HTML::Mason::Escapes; plan tests => 3; my $html = qq|<>"& \x{2202}|; HTML::Mason::Escapes::basic_html_escape( \$html ); is( $html, "<>"& \x{2202}", 'test basic HTML escape' ); SKIP: { skip 'HTML::Entities does not escape utf8 properly under Perl < 5.8', 1 if $] < 5.008; # Perl 5.6.2 totally borks this, thought it's probably just be a # bug in HTML::Entities my $html2 = qq|<>"& \x{2202}\x{20a5}|; HTML::Mason::Escapes::html_entities_escape( \$html2 ); is( $html2, "<>"& ∂₥", 'test HTML::Entities escape' ); } my $url = qq|"=\x{2202}|; HTML::Mason::Escapes::url_escape( \$url ); is( $url, '%22%3D%E2%88%82', 'test url escape' );