The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- perl -*-

use strict;

BEGIN { my $w = $SIG{__WARN__}; $SIG{__WARN__} = sub { $w } };
use Test::More tests => 3;

use_ok( 'SMS::Send' );
use_ok( 'SMS::Send::NL::Mollie' );

my @drivers = SMS::Send->installed_drivers;
is( scalar(grep { $_ eq 'NL::Mollie' } @drivers), 1, 'Found installed driver NL::Mollie' );

exit(0);