Skip to content

Commit

Permalink
Build results of f09faa1 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Sep 27, 2015
1 parent a792297 commit 2356612
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 56 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Release history for PPIx-Element-Package

0.001000 2015-09-27T20:40:16Z 9eb00fa
0.001000 2015-09-27T20:44:54Z f09faa1
- First version.
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ perlcritic.rc
t/00-compile/lib_PPIx_Element_Package_pm.t
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/basic.t
t/corpus/dual_scope.pm
t/corpus/no_package.pm
t/corpus/single_labelled_scope.pm
t/corpus/single_package.pm
t/dual_scope.t
t/no_package.t
t/package_self_ownership.t
t/self-parse.t
t/single_labelled_scope.t
t/single_package.t
weaver.ini
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"version" : "0.001000"
}
},
"release_status" : "testing",
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/kentnl/PPIx-Element-Package/issues"
Expand Down Expand Up @@ -881,7 +881,7 @@
"zilla" : {
"class" : "Dist::Zilla::Dist::Builder",
"config" : {
"is_trial" : "1"
"is_trial" : "0"
},
"version" : "5.039"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPIx/Element/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package PPIx::Element::Package;

our $VERSION = '0.001000'; # TRIAL
our $VERSION = '0.001000';

# ABSTRACT: Derive the package an element is defined in

Expand Down
50 changes: 0 additions & 50 deletions t/basic.t

This file was deleted.

18 changes: 18 additions & 0 deletions t/self-parse.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
use strict;
use warnings;

use Test::More;

use PPI::Util qw( _Document );
use PPI;
use PPIx::Element::Package qw( identify_package_namespace );

my $document = _Document('lib/PPIx/Element/Package.pm');

my (@subs) = @{ $document->find('PPI::Statement::Sub') };

for my $sub (@subs) {
is( identify_package_namespace($sub), 'PPIx::Element::Package', "Namespace for sub " . $sub->name . " is the expected value", );
}

done_testing;
2 changes: 1 addition & 1 deletion xt/author/eol.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ my @files = (
't/00-compile/lib_PPIx_Element_Package_pm.t',
't/00-report-prereqs.dd',
't/00-report-prereqs.t',
't/basic.t',
't/corpus/dual_scope.pm',
't/corpus/no_package.pm',
't/corpus/single_labelled_scope.pm',
't/corpus/single_package.pm',
't/dual_scope.t',
't/no_package.t',
't/package_self_ownership.t',
't/self-parse.t',
't/single_labelled_scope.t',
't/single_package.t'
);
Expand Down

0 comments on commit 2356612

Please sign in to comment.