summaryrefslogtreecommitdiff
path: root/t/62-getDIDs.t
diff options
context:
space:
mode:
Diffstat (limited to 't/62-getDIDs.t')
-rw-r--r--t/62-getDIDs.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/62-getDIDs.t b/t/62-getDIDs.t
index 7c1d444..35e42be 100644
--- a/t/62-getDIDs.t
+++ b/t/62-getDIDs.t
@@ -8,17 +8,17 @@
use Test::More;
require 't/lib/test_account.pl';
+require Net::GlobalPOPs::MediaServicesAPI;
my($login, $password) = test_account_or_skip();
-plan tests => 2;
+plan tests => 1;
-use_ok 'Net::GlobalPOPs::MediaServicesAPI';
my $debug = $ENV{TEST_VERBOSE};
my $gp = Net::GlobalPOPs::MediaServicesAPI->new( 'login' => $login,
'password' => $password,
- 'debug' => $debug,
+ #'debug' => $debug,
);
my $return = $gp->getDIDs(
'state' => 'CA',
@@ -28,7 +28,7 @@ my $return = $gp->getDIDs(
);
use Data::Dumper;
-diag( Dumper($return) ) if $debug;
+diag( Dumper($return) ); # if $debug;
#XXX test some things about the return...
ok( $return, 'getDIDs returned something' );