~ubuntu-branches/ubuntu/karmic/padre/karmic

« back to all changes in this revision

Viewing changes to t/lib/Padre/Plugin/Test/Plugin.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2009-02-18 15:55:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090218155500-verj6agdgojx5ihm
Tags: upstream-0.27.ds1
ImportĀ upstreamĀ versionĀ 0.27.ds1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Padre::Plugin::Test::Plugin;
 
2
 
 
3
use warnings;
 
4
use strict;
 
5
 
 
6
our $VERSION = '0.01';
 
7
 
 
8
my @menu = (
 
9
    ['Test Me Too', \&test_me_too],
 
10
);
 
11
 
 
12
sub menu {
 
13
    my ($self) = @_;
 
14
    return @menu;
 
15
}
 
16
 
 
17
sub test_me_too {
 
18
        my ( $self, $event ) = @_;
 
19
        
 
20
        # XXX do something we can test?
 
21
}
 
22
 
 
23
1;