The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package SNA::Network::Plugin::Test;

use warnings;
use strict;

require Exporter;
use base qw(Exporter);
our @EXPORT = qw(network_plugin_test);


=head1 NAME

SNA::Network::Plugin::Test - Test plugin for SNA::Network


=head1 METHODS

=head2 network_plugin_test

returns 1

=cut

sub network_plugin_test {
	return 1;
}


=head1 AUTHOR

Darko Obradovic, C<< <dobradovic at gmx.de> >>


=head1 COPYRIGHT & LICENSE

Copyright 2009 Darko Obradovic, all rights reserved.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut

1;