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' ) || print "Bail out!\n";
}

done_testing();