1use Test;
2
3use SOAP::Lite;
4plan tests => 1;
5eval "use UNIVERSAL::require"
6    or do {
7        print "# Test should always without UNIVERSAL::use installed\n";
8    };
9
10my $obj = SOAP::Custom::XML::Data->new();
11
12eval { $obj->use('SOAP-encoded') };
13ok !$@;
14