use HTML::Zoom; use Test::More tests => 1; my $zoom = HTML::Zoom->from_html('

Hello my name is

'); my $html = $zoom->select('#name')->replace_content('Foo foo')->to_html; is($html, '

Hello my name is Foo foo

');