diff options
author | franck cuny <franck@lumberjaph.net> | 2009-12-20 15:52:22 +0100 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2009-12-20 15:52:22 +0100 |
commit | abcc81f7501ac86b528aa5cdabcea26a0049cc27 (patch) | |
tree | 1d78c0cb23713aefd655489f18bfb060f1b2ad05 /t/03_identica.t | |
parent | remove and update some tests (diff) | |
download | moosex-net-api-abcc81f7501ac86b528aa5cdabcea26a0049cc27.tar.gz |
remove and update some tests
Diffstat (limited to 't/03_identica.t')
-rw-r--r-- | t/03_identica.t | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/t/03_identica.t b/t/03_identica.t deleted file mode 100644 index 2dc5acc..0000000 --- a/t/03_identica.t +++ /dev/null @@ -1,24 +0,0 @@ -use strict; -use warnings; -use lib ('t/lib'); - -use Test::More; -use Identica; - -BEGIN { - plan skip_all => - 'set $ENV{IDENTICA_USER} and $ENV{IDENTICA_PWD} for this test' - unless $ENV{IDENTICA_USER} && $ENV{IDENTICA_PWD}; -} - -my ($obj, $res); - -ok $obj = Identica->new( - api_username => $ENV{IDENTICA_USER}, - api_password => $ENV{IDENTICA_PWD} -); - -ok $res = $obj->public_timeline; -ok $res = $obj->update_status( status => 'this is a test' ); - -done_testing(); |