1Module::Install::With(3U)ser Contributed Perl DocumentatiMoondule::Install::With(3)
2
3
4
5 interactive
6 The "interactive" function tests for an install that has a user present
7 (or at least, one in which it is reasonable for us to present prompts
8 and other similar types of things).
9
10 Returns true if in an interactive environment, or false otherwise.
11
12 automated_testing
13 Are we currently running in an automated testing environment, such as
14 CPAN Testers.
15
16 This is primarily a cleaner and more human-readable equivalent of
17 checking $ENV{AUTOMATED_TESTING} yourself, but may be improved in line
18 with best practices at a later date.
19
20 release_testing
21 Are we currently running in an release testing environment. That is,
22 are we in the process of running in a potential highly-intensive and
23 high dependency bloat testing process prior to packaging a module for
24 release.
25
26 This is primarily a cleaner and more human-readable equivalent of
27 checking $ENV{RELEASE_TESTING} yourself, but may be improved in line
28 with best practices at a later date.
29
30 win32
31 The "win32" function tests if the Makefile.PL is currently running in a
32 native Microsoft Windows Perl, such as ActivePerl or Strawberry Perl.
33
34 This is primarily a cleaner and more human-readable equivalent of
35 checking "$^O eq 'MSWin32'" yourself, but may be improved in line with
36 best practices at a later date.
37
38 winlike
39 The "winlike" function tests if the Makefile.PL is currently running in
40 a Microsoft Windows Perl, under either cygwin or a native Win32 Perl.
41
42 This is primarily a cleaner and more human-readable equivalent of
43 checking "$^O eq 'MSWin32' or $^O eq 'cygwin'"yourself, but may be
44 improved in line with best practices at a later date.
45
47 Module::Install
48
50 Adam Kennedy <adamk@cpan.org>
51
53 Copyright 2007 - 2010 Adam Kennedy.
54
55 This program is free software; you can redistribute it and/or modify it
56 under the same terms as Perl itself.
57
58 The full text of the license can be found in the LICENSE file included
59 with this module.
60
61
62
63perl v5.12.0 2010-03-10 Module::Install::With(3)