#!perl
use
strict;
use
warnings;
use
RT::Client::REST;
$rt
= RT::Client::REST->new(
timeout
=>
'10/'
,
# bogus
);
is
$rt
->timeout,
'10/'
,
'trailing slash on timeout preserved, even if bogus'
;
#!perl
use
strict;
use
warnings;
use
RT::Client::REST;
$rt
= RT::Client::REST->new(
timeout
=>
'10/'
,
# bogus
);
is
$rt
->timeout,
'10/'
,
'trailing slash on timeout preserved, even if bogus'
;