Skip to content

Commit

Permalink
[#481] [#632] Checking in test plugin `t/plugins/subfoldered/subfolde…
Browse files Browse the repository at this point in the history
…red.pl` for testing warnings for a perl-initialized plugin with a plugin envelope
  • Loading branch information
jayallen committed Dec 21, 2010
1 parent 27c7ee3 commit b0b73e0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions t/plugins/subfoldered/subfoldered.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package MT::Plugin::Subfoldered;

use strict;
use warnings;
use base 'MT::Plugin';
our $VERSION = '0.1';
use MT;

my $plugin;
MT->add_plugin($plugin = __PACKAGE__->new({
name => "Subfoldered",
version => $VERSION,
description => "Subfoldered legacy format plugin",
author_name => "Whomever",
}));

1;

0 comments on commit b0b73e0

Please sign in to comment.