summaryrefslogtreecommitdiff
path: root/t/01-login.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01-login.t')
-rw-r--r--t/01-login.t17
1 files changed, 0 insertions, 17 deletions
diff --git a/t/01-login.t b/t/01-login.t
deleted file mode 100644
index 2642b59..0000000
--- a/t/01-login.t
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl -w
-
-use Test::More;
-require 't/lib/test_account.pl';
-
-my($login, $password) = test_account_or_skip;
-plan tests => 2;
-
-use_ok 'Net::VoIP_Innovations';
-
-my $gp = Net::VoIP_Innovations->new('login' => $login,
- 'password' => $password );
-
-#eww. what is the right, TEST_VERBOSE-aware way to do this
-warn Net::VoIP_Innovations->errstr unless $gp;
-
-ok( $gp, 'Login sucessful' );