package POE::Component::Server::IRC::Test::Plugin; use strict; use warnings; use POE::Component::Server::IRC::Plugin qw( :ALL ); our $VERSION = '1.40'; sub new { return bless { @_[1..$#_] }, $_[0]; } sub PCSI_register { $_[1]->plugin_register( $_[0], 'SERVER', qw(all) ); return 1; } sub PCSI_unregister { return 1; } sub _default { return PCSI_EAT_NONE; } 1; __END__ =head1 NAME POE::Component::Server::IRC::Test::Plugin - Part of the L test-suite. =head1 DESCRIPTION POE::Component::Server::IRC::Test::Plugin is a very simple L plugin used to test that the plugin system is working correctly. =head1 CONSTRUCTOR =over =item new No arguments required, returns an POE::Component::Server::IRC::Test::Plugin object. =back =head1 AUTHOR Chris "BinGOs" Williams =head1 LICENSE Copyright C<(c)> Chris Williams This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details. =head1 SEE ALSO L