#!/usr/bin/env perl
use strict;
use lib 'lib';
my $html = '<div class="container"><h2>Foo</h2><div class="inner">Hello</div><div class="inner">Goodbye</div></div>';
my $j = j($html);
j('<p>Test</p>')->prepend_to($j->find('.inner'));
is $j->as_html,
'<div class="container"><h2>Foo</h2><div class="inner"><p>Test</p>Hello</div><div class="inner"><p>Test</p>Goodbye</div></div>', 'new content';
like j($html)->document->prepend('<p>Test</p>')->as_html, qr!<p>Test</p><div class="container">!, 'on document node';
# append existing element
$j = j($html);
is $j->find('h2')->prepend_to($j->find('.inner'))->end->as_html, '<div class="container"><div class="inner"><h2>Foo</h2>Hello</div><div class="inner"><h2>Foo</h2>Goodbye</div></div>', 'existing element';
done_testing;