Skip to content

Commit

Permalink
test without meat in foreach
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Mar 26, 2018
1 parent d881a50 commit c673425
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions t/lowercase.t
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,16 @@ my %upper2lower = qw(

diag( "Entering foreach" );

=pod
foreach my $upper ( sort keys %upper2lower ) {
my $lower = $upper2lower{$upper};
use Unicode::Casing lc => \&Roman::Unicode::to_roman_lower;

# use Unicode::Casing lc => \&Roman::Unicode::to_roman_lower;

diag( "After test for $upper" );
is( lc $upper, $lower, "$upper turns into $lower" );
# is( lc $upper, $lower, "$upper turns into $lower" );
diag( "After test for $upper" );
}

=cut

diag( "Leaving foreach" );

diag "Before done_testing";
Expand Down

0 comments on commit c673425

Please sign in to comment.