package App::Maisha::Plugin::Test; use strict; use warnings; our $VERSION = '0.15'; #---------------------------------------------------------------------------- # Library Modules use base qw(App::Maisha::Plugin::Base); use base qw(Class::Accessor::Fast); #---------------------------------------------------------------------------- # Accessors __PACKAGE__->mk_accessors($_) for qw(api users); #---------------------------------------------------------------------------- # Public API sub login { my ($self,$config) = @_; $self->api($self); return 1; } 1; __END__ =head1 NAME App::Maisha::Plugin::Test - Maisha Test Plugin =head1 SYNOPSIS maisha maisha> use Test use ok =head1 DESCRIPTION App::Maisha::Plugin::Test is used to test Maisha responds correctly when plugins do not support a particular method call. =head1 METHODS =head2 Constructor =over 4 =item * new =back =head2 Process Methods =over 4 =item * login Login to the service. =back =head2 API Methods There are no API methods for this plugin. =head1 SEE ALSO For further information regarding the commands and configuration, please see the 'maisha' script included with this distribution. L =head1 WEBSITES =over 4 =item * Main Site: L =item * Git Repo: L =item * RT Queue: L =back =head1 AUTHOR Copyright (c) 2009-2010 Barbie for Grango.org. =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html =cut