The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! /usr/bin/env perl
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

use FindBin qw($Bin);
use lib "$Bin/../../../../../lib";

BEGIN {
    use_ok( 'LWP::Authen::OAuth2::ServiceProvider::Google' ) || print "Bail out!\n";
    use LWP::Authen::OAuth2;

    my $oauth2 = LWP::Authen::OAuth2->new(
        client_id => 'Test',
        client_secret => 'Test',
        service_provider => "Google",
        redirect_uri => "http://127.0.0.1",
    );
    isa_ok($oauth2, 'LWP::Authen::OAuth2');
}

done_testing();