summaryrefslogtreecommitdiff
path: root/t/03_identica.t
blob: d50f9b880f50422c3d9c33760d182667d94780ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use strict;
use warnings;
use lib ('t/lib');

use Test::More;
use Identica;
use YAML::Syck;
use Try::Tiny;

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();