use strict ;
use warnings FATAL => 'all' ;
use Test ;
use ExtUtils::MakeMaker ;
BEGIN { plan tests => 1 } ;
use XML::Smart ;
my $xml = new XML::Smart(q`
TEXT1 & more
aaa
bbb
`,'html') ;
$xml = $xml->copy() ;
my $data = $xml->data(noident=>1 , noheader => 1 , wild=>1) ;
ok($data,q`
TEXT1 & more
aaa
bbb
`) ;
1 ;