API-MailboxOrg
view release on metacpan or search on metacpan
t/002_hello-world.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::RequiresInternet;
use API::MailboxOrg;
my $api = API::MailboxOrg->new(
user => 'dummy',
password => 'dummy',
);
my $result = $api->hello->world;
is $result, "Hello World!";
done_testing;
( run in 1.129 second using v1.01-cache-2.11-cpan-bbe5e583499 )