The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test;

use SOAP::Lite;
plan tests => 1;
eval "use UNIVERSAL::require"
    or do {  
        print "# Test should always without UNIVERSAL::use installed\n";
    };
    
my $obj = SOAP::Custom::XML::Data->new();

eval { $obj->use('SOAP-encoded') };
ok !$@;