Skip to content

Commit

Permalink
Build results of fff7a78 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Sep 27, 2015
1 parent ada9c6e commit d5b96a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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-27T21:35:01Z 36956a1
0.001000 2015-09-27T21:38:07Z fff7a78
- First version.
4 changes: 2 additions & 2 deletions t/dual_scope.t
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ my @subs = @{ $document->find('PPI::Statement::Sub') };
my ($inner) = grep { $_->name eq 'in_scope' } @subs;
my ($outer) = grep { $_->name eq 'out_of_scope' } @subs;

package_is( $inner, 'Example', 'sub inside the scope after the package is owned by the package' );
package_is( $outer, 'Outer', 'sub outside the scope after the package is owned by Outer' );
package_is $inner, 'Example', 'sub inside the scope after the package is owned by the package';
package_is $outer, 'Outer', 'sub outside the scope after the package is owned by Outer';

subtest 'in_scope children' => sub {
package_is $_, 'Example', 'Children of inner sub are owned by the package' for $inner->children;
Expand Down

0 comments on commit d5b96a4

Please sign in to comment.