Server IP : 51.89.169.208 / Your IP : 52.14.187.136 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/share/doc/perl-Test-Simple/t/Legacy/ |
Upload File : |
#!/usr/bin/perl -w # A test to make sure the new Test::Harness was installed properly. use Test::More; plan tests => 1; my $TH_Version = 2.03; require Test::Harness; unless( cmp_ok( eval $Test::Harness::VERSION, '>=', $TH_Version, "T::H version" ) ) { diag <<INSTRUCTIONS; Test::Simple/More/Builder has features which depend on a version of Test::Harness greater than $TH_Version. You have $Test::Harness::VERSION. Please install a new version from CPAN. If you've already tried to upgrade Test::Harness and still get this message, the new version may be "shadowed" by the old. Check the output of Test::Harness's "make install" for "## Differing version" messages. You can delete the old version by running "make install UNINST=1". INSTRUCTIONS }