In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/c4d7a63389c79059f9f3d318c4166a3b11bb0974?hp=cae2b4cb147cde9e8200c3c1eb888e83824ee275>
- Log ----------------------------------------------------------------- commit c4d7a63389c79059f9f3d318c4166a3b11bb0974 Author: Dagfinn Ilmari Mannsåker <[email protected]> Date: Thu Jun 27 00:17:52 2019 +0100 Clean up after previous commit - Two empty lines betwen tests - Remove unused $err variable ----------------------------------------------------------------------- Summary of changes: dist/Exporter/t/Exporter.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/Exporter/t/Exporter.t b/dist/Exporter/t/Exporter.t index 0119975141..0518080cac 100644 --- a/dist/Exporter/t/Exporter.t +++ b/dist/Exporter/t/Exporter.t @@ -117,6 +117,7 @@ Testing->import(@imports); @imports), 'import by symbols' ); + package Yar; my @tags = qw(:This :tray); Testing->import(@tags); @@ -127,16 +128,17 @@ Testing->import(@tags); @{$Testing::EXPORT_TAGS{@tags}}), 'import by tags' ); + package Err; my @missing = qw(first second); eval { Testing->import(@missing) }; -my $err = $@; for my $func (@missing) { ::ok( $@ =~ /^"$func" is not exported by the Testing module$/m, "$func is not exported error message" ); } + package Arrr; Testing->import(qw(!lifejacket)); -- Perl5 Master Repository
