This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Systematic tests for the block hooks.
[perl5.git]
/
ext
/
XS-APItest
/
t
/
Markers.pm
1
package t::Markers;
2
3
push @XS::APItest::bhkav, "run/pm";
4
5
use t::BHK push => "compile/pm/before";
6
sub import {
7
use t::BHK push => "compile/pm/inside";
8
push @XS::APItest::bhkav, "run/import";
9
}
10
11
use t::BHK push => "compile/pm/after";
12
13
1;