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 2.126 seconds using v1.01-cache-2.11-cpan-524268b4103 )