The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More tests => 2;

use WebService::Pushover;

ok $push = WebService::Pushover->new;

TODO: {
    local $TODO = "Haven't figured out how to test lazy object creation";

    isa_ok( $push->spore, 'Net::HTTP::Spore'  );
}

diag( "Testing instantiation of Net::HTTP::Spore object" );