The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#-*- mode: cperl -*-#
use Test::More tests => 1;
use WWW::Twilio::TwiML;

#########################

{
    my $tw = new WWW::Twilio::TwiML;
    my $resp = $tw->Respose;
    local $SIG{__WARN__} = sub { die $@ };
    eval { $resp->Dial(undef) };
    is( $@, '', "empty arguments" );
}