root/lang/perl/Net-Chuitter/trunk/t/10_public.t @ 35484

Revision 35484, 291 bytes (checked in by likk, 4 years ago)

initial import

Line 
1use strict;
2use Test::More tests => 2;
3use Net::Chuitter;
4my $chuitter = Net::Chuitter->new(
5  username => 'YOUR LOGIN_ID',
6  password => 'YOUR PASSWORD',
7);
8my $tl = $chuitter->public_timeline();
9
10isa_ok($chuitter,'Net::Chuitter', 'load test');
11isa_ok($tl,'ARRAY', 'public_timeline test');
Note: See TracBrowser for help on using the browser.