1Test2::API::Breakage(3)User Contributed Perl DocumentatioTnest2::API::Breakage(3)
2
3
4
6 Test2::API::Breakage - What breaks at what version
7
9 This module provides lists of modules that are broken, or have been
10 broken in the past, when upgrading Test::Builder to use Test2.
11
13 These can be imported, or called as methods on the class.
14
15 %mod_ver = upgrade_suggested()
16 %mod_ver = Test2::API::Breakage->upgrade_suggested()
17 This returns key/value pairs. The key is the module name, the value
18 is the version number. If the installed version of the module is at
19 or below the specified one then an upgrade would be a good idea,
20 but not strictly necessary.
21
22 %mod_ver = upgrade_required()
23 %mod_ver = Test2::API::Breakage->upgrade_required()
24 This returns key/value pairs. The key is the module name, the value
25 is the version number. If the installed version of the module is at
26 or below the specified one then an upgrade is required for the
27 module to work properly.
28
29 %mod_ver = known_broken()
30 %mod_ver = Test2::API::Breakage->known_broken()
31 This returns key/value pairs. The key is the module name, the value
32 is the version number. If the installed version of the module is at
33 or below the specified one then the module will not work. A newer
34 version may work, but is not tested or verified.
35
37 The source code repository for Test2 can be found at
38 http://github.com/Test-More/test-more/.
39
41 Chad Granum <exodist@cpan.org>
42
44 Chad Granum <exodist@cpan.org>
45
47 Copyright 2019 Chad Granum <exodist@cpan.org>.
48
49 This program is free software; you can redistribute it and/or modify it
50 under the same terms as Perl itself.
51
52 See http://dev.perl.org/licenses/
53
54
55
56perl v5.30.2 2020-03-31 Test2::API::Breakage(3)