The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More tests => 3;


# Check that the module loads ok
BEGIN { use_ok( 'Net::SAP' ); }


# Now try creating a new Net::SAP object
my $sap = new Net::SAP('ipv4');
ok( $sap, "Creating Net::SAP object" );


# Close the socket
$sap->close();
pass( "Closing socket" );