The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test;

use SOAP::Lite;

plan tests => 2;

my $soap = SOAP::Lite->new(
    readable => 1,
    outputxml => 1,
);

my $clone = $soap->clone();

ok ($clone->readable() == 1);
ok ($clone->outputxml() == 1);