Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer committed May 16, 2012
1 parent ed47523 commit 88382ba
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions t/00-load.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!perl
use strict;
use warnings;
use Test::More;

BEGIN {
my @modules = qw(
Dist::Zilla::PluginBundle::Author::JTPALMER
Pod::Weaver::PluginBundle::Author::JTPALMER
);

for my $module (@modules) {
use_ok($module) or BAIL_OUT("Failed to load $module");
}
}

diag(
sprintf(
'Testing Dist::Zilla::PluginBundle::Author::JTPALMER %f, Perl %f, %s',
$Dist::Zilla::PluginBundle::Author::JTPALMER::VERSION,
$], $^X
)
);

done_testing();

0 comments on commit 88382ba

Please sign in to comment.