Skip to content

Commit

Permalink
Build results of 6e0632a (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 30, 2014
1 parent 255f6e7 commit a4492b8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Release history for Dist-Zilla-Plugin-Author-KENTNL-RecommendFixes

0.003000 2014-08-29T23:53:10Z
0.003000 2014-08-30T00:01:21Z
[00 Major]
- Interals overhauled again
- new checks
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ t/00-compile/lib_Dist_Zilla_Plugin_Author_KENTNL_RecommendFixes_pm.t
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/basic.t
t/dummy_lib.t
t/dummy_travis.t
weaver.ini
xt/author/critic.t
Expand Down
30 changes: 30 additions & 0 deletions t/dummy_lib.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
use strict;
use warnings;

use Test::More;
use Dist::Zilla::Util::Test::KENTNL 1.0001002 qw( dztest );
use Test::DZil qw( simple_ini );

# ABSTRACT: basic test

my $ini = simple_ini( ['Author::KENTNL::RecommendFixes'] );
my $dz = dztest();

$dz->add_file( 'dist.ini', $ini );
$dz->add_file( 'lib/.keep' , q[]);
$dz->build_ok;
$dz->has_messages(
[
[ qr/\.git does not exist/, 'Uninitialized git' ],
[ qr/dist\.ini\.meta does not exist/, 'Unbaked dist' ],
[ qr/weaver\.ini does not exist/, 'Ancient Pod::Weaver' ],
[ qr/perltidyrc does not exist/, 'No perltidy' ],
[ qr/Changes does not exist/, 'No Changes' ],
[ qr/LICENSE does not exist/, 'No LICENSE' ],
[ qr/Changes\.deps does not exist/, 'Diff changes' ],
]
);

note explain $dz->builder->log_messages;

done_testing;

0 comments on commit a4492b8

Please sign in to comment.