This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Mostly adding tests and documentation.
[perl5.git] / dist / ExtUtils-ParseXS / t / 111-analyze_preprocessor_statements.t
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4 $| = 1;
5 use Carp;
6 use Cwd;
7 use File::Spec;
8 use File::Temp qw( tempdir );
9 use Test::More qw(no_plan); # tests =>  7;
10 use lib qw( lib );
11 use ExtUtils::ParseXS::Utilities qw(
12     analyze_preprocessor_statements
13 );
14
15 #      ( $self, $XSS_work_idx, $BootCode_ref ) =
16 #        analyze_preprocessor_statements(
17 #          $self, $statement, $XSS_work_idx, $BootCode_ref
18 #        );
19
20 pass("Passed all tests in $0");
21
22