#=============================================================================== # # DESCRIPTION: test U<> implementation # # AUTHOR: Aliaksandr P. Zahatski, #=============================================================================== #$Id$ package T::FormattingCode::U; use strict; use warnings; use Test::More; use Data::Dumper; use base 'TBase'; sub t01_as_xml : Test { my $t = shift; my $x = $t->parse_to_test( < T is $x->{'U<>'}->[0]->{content}->[0], 'test', 'U'; } sub t02_as_xhtml : Test { my $t = shift; my $x = $t->parse_to_xhtml( < T $t->is_deeply_xml( $x, q#

Unusual test

# ); } sub t03_as_docbook : Test { my $t = shift; my $x = $t->parse_to_docbook( < T $t->is_deeply_xml( $x, q#Bold test #) } 1;