blob: 39a5aadd489a634d162891d3001bd17eb71e5d82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#!/usr/bin/perl -w
BEGIN {
unshift @INC, 't/lib';
}
chdir 't';
BEGIN {
@Methods = (qw(wraplist
rootdir
ext
guess_name
find_perl
path
maybe_command
perl_script
file_name_is_absolute
replace_manpage_separator
init_others
constants
cflags
const_cccmd
pm_to_blib
tool_autosplit
tool_xsubpp
tools_other
dist
c_o
xs_c
xs_o
top_targets
dlsyms
dynamic_lib
dynamic_bs
static_lib
manifypods
processPL
installbin
subdir_x
clean
realclean
dist_basics
dist_core
distdir
dist_test
install
perldepend
makefile
test
test_via_harness
test_via_script
makeaperl
));
}
BEGIN {
use Test::More;
if ($^O eq 'VMS') {
plan( tests => @Methods + 1 );
}
else {
plan( skip_all => "This is not VMS" );
}
}
use_ok( 'ExtUtils::MM_VMS' );
foreach my $meth (@Methods) {
can_ok( 'ExtUtils::MM_VMS', $meth);
}
|