Skip to content

Commit

Permalink
Build results of a5e9632 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Feb 28, 2017
1 parent 0883fcd commit 15f1ec0
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 13 deletions.
6 changes: 5 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Release history for Dist-Zilla-Plugin-Test-Compile-PerModule

0.003901 2017-02-28T03:41:05Z 4d3032a
0.003901 2017-02-28T03:42:06Z a5e9632
- New test template 02-raw-require.t

[Dependencies::Stats]
- Dependencies changed since 0.003900, see misc/*.deps* for details
- test: ↓1

0.003900 2017-02-28T02:09:54Z 61cd404
- New variable "relpath" that includes the file path with "lib" stripped if present, or with "./" prepended otherwise.

Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"File::Spec" : "0",
"Test::DZil" : "0",
"Test::File::ShareDir::Dist" : "0",
"Test::More" : "0.89",
"Test::More" : "0",
"perl" : "5.006"
}
}
Expand Down Expand Up @@ -427,7 +427,7 @@
"path_translator" : "base64_filter",
"prefix" : "t/00-compile",
"skip" : [],
"test_template" : "01-basic.t.tpl",
"test_template" : "02-raw-require.t.tpl",
"xt_mode" : null
}
},
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build_requires:
File::Spec: '0'
Test::DZil: '0'
Test::File::ShareDir::Dist: '0'
Test::More: '0.89'
Test::More: '0'
perl: '5.006'
configure_requires:
ExtUtils::MakeMaker: '0'
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ my %WriteMakefileArgs = (
"File::Spec" => 0,
"Test::DZil" => 0,
"Test::File::ShareDir::Dist" => 0,
"Test::More" => "0.89"
"Test::More" => 0
},
"VERSION" => "0.003901",
"test" => {
Expand All @@ -66,7 +66,7 @@ my %FallbackPrereqs = (
"Path::Tiny" => 0,
"Test::DZil" => 0,
"Test::File::ShareDir::Dist" => 0,
"Test::More" => "0.89",
"Test::More" => 0,
"strict" => 0,
"warnings" => 0
);
Expand Down
1 change: 1 addition & 0 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ trailing_whitespace = 1
[Test::MinimumVersion / @Author::KENTNL/Test::MinimumVersion]

[Test::Compile::PerFile / @Author::KENTNL/Test::Compile::PerFile]
test_template = 02-raw-require.t.tpl

[Test::Perl::Critic / @Author::KENTNL/Test::Perl::Critic]

Expand Down
1 change: 1 addition & 0 deletions dist.ini.meta
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ toolkit_hardness = soft
twitter_extra_hash_tags = #distzilla
bumpversions = 1
srcreadme = mkdn
Test::Compile::PerFile.test_template = 02-raw-require.t.tpl

; version_major = 0
; version_minor = 1
Expand Down
2 changes: 2 additions & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.003901
[Changed / test requires]
- Test::More 0.89 → 0

0.003900 2017-02-28T02:09:54Z
[Added / configure requires]
Expand Down
2 changes: 2 additions & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.003901
[Changed / test requires]
- Test::More 0.89 → 0

0.003900 2017-02-28T02:09:54Z
[Added / configure recommends]
Expand Down
22 changes: 16 additions & 6 deletions t/00-compile/lib_Dist_Zilla_Plugin_Test_Compile_PerFile_pm.t
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
use strict;
use warnings;

# This test was generated for <lib/Dist/Zilla/Plugin/Test/Compile/PerFile.pm>
# using by Dist::Zilla::Plugin::Test::Compile::PerFile ( @Author::KENTNL/Test::Compile::PerFile ) version 0.003901
# with template 01-basic.t.tpl
# with template 02-raw-require.t.tpl
my $file = "Dist\/Zilla\/Plugin\/Test\/Compile\/PerFile\.pm";
my $err;
{
local $@;
eval { require $file; 1 } or $err = $@;
};

use Test::More 0.89 tests => 1;
require_ok("Dist/Zilla/Plugin/Test/Compile/PerFile.pm");
if( not defined $err ) {
printf "1..1\nok 1 - require %s\n", $file;
exit 0;
}
printf "1..1\nnot ok 1 - require %s\n", $file;
for my $line ( split /\n/, $err ) {
printf STDERR "# %s\n", $line;
}
exit 1;
2 changes: 1 addition & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ do { my $x = {
'File::Spec' => '0',
'Test::DZil' => '0',
'Test::File::ShareDir::Dist' => '0',
'Test::More' => '0.89',
'Test::More' => '0',
'perl' => '5.006'
}
}
Expand Down

0 comments on commit 15f1ec0

Please sign in to comment.