Help for this page

Select Code to Download


  1. or download this
    my $google = Google::Auth->login(
        email    => 'test@gmail.com',
    ...
    
    my $contactlist = Google::ContactList->fetchall($google);
    isa_ok $contactlist, 'Google::ContactList';
    
  2. or download this
    ok(
        $google->isa('Google::Auth'), 
        'Constructed an instance of Google::Auth',
    );