Fix deparsing of reversed foreach loops,
[p5sagit/p5-mst-13.2.git] / ext / B / t / bblock.t
CommitLineData
7e521e02 1#!./perl -Tw
2
3BEGIN {
4 chdir 't';
5 @INC = '../lib';
9cd8f857 6 require Config;
7 if (($Config::Config{'extensions'} !~ /\bB\b/) ){
8 print "1..0 # Skip -- Perl configured without B module\n";
9 exit 0;
10 }
7e521e02 11}
12
13use Test::More tests => 1;
14
15use_ok('B::Bblock', qw(find_leaders));
16
17# Someone who understands what this module does, please fill this out.