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