CINXE.COM
Testing your code - qa.perl.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta name="description" content="How to test your Perl code" /> <link rel="shortcut icon" href="https://cdn.perl.org/perlweb/favicon.ico" /> <title>Testing your code - qa.perl.org</title> <link rel="stylesheet" type="text/css" href="https://cdn.perl.org/perlweb/css/perlweb_bootstrap.min.css" /> <!-- Fonts --> <link href='https://fonts.googleapis.com/css?family=Lato:400,100,300,700,900' rel='stylesheet' type='text/css'> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="page-qa section_testing"> <nav class="navbar navbar-inverse" data-height="120"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/"> <img src="https://cdn.perl.org/perlweb/images/logo_qa.svg" alt="Testing your code | Testing and improving Perl code" class="page-logo"> </a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="list-inline text-center nav navbar-nav navbar-right"> <li class="sub selected"><a href="/testing/">Testing your code</a></li> <li class="sub"><a href="/cpan-testers/">Testing CPAN & Perl</a></li> <li class="sub"> <a href="/phalanx/">Inactive projects</a></li> </ul> </div><!--/.nav-collapse --> </div> </nav> <div class="jumbotron jumbotron-internal"> <div class="container text-center"> <h1>Testing your code</h1> <p>How to test your Perl code</p> </div> </div> <div class="container"> <h3> Testing cheat sheets </h3> <p> Ian Langworth, author of <cite><a href="https://www.oreilly.com/library/view/perl-testing-a/0596100922/">Perl Testing: A Developer's Notebook</a></cite> has put together a tremendous <a href="https://github.com/statico/perl-test-refcard/raw/master/perl_test_refcard.pdf">Perl testing quick reference card</a>. </p> <h3> Testing articles </h3> <p> <a href="http://perl.com/">perl.com</a> has published a number of articles on specific testing techniques: </p> <ul> <li> <a href="https://www.perl.com/pub/2004/10/21/taint_testing_kata.html/">Testing Taint</a> </li> <li> <a href="https://www.perl.com/pub/2004/12/16/import_kata.html/">Testing Imports</a> </li> <li> <a href="https://www.perl.com/pub/2005/02/10/database_kata.html/">Testing Databases</a> </li> <li> <a href="https://www.perl.com/pub/2005/04/07/mockobject_kata.html/">Mocking Objects</a> </li> </ul> <h3> Testing Modules </h3> <p> The CPAN has a wide variety of modules to help with your automated testing. Here's a <a href="/test-modules.html">summary of what's available</a>. </p> <p> Here's a <a href="/testing-guidelines.html">handy summary of guidelines for writing effective tests</a>, compiled from lessons learned when improving the tests for DBI. </p> <h3> Automated testing with Perl </h3> <p> Automated testing is a key part of software development, especially in environments that have embraced extreme programming. Perl's <a href="https://metacpan.org/release/Test-Harness/">Test::Harness</a> framework, along with <a href="https://metacpan.org/release/Test-Simple/">Test::Simple and Test::More</a>, allow flexible testing of all parts of your development projects. </p> <p> A starter list of resources: </p> <ul> <li> <a href="https://metacpan.org/source/EXODIST/Test-Simple-1.302136/lib/Test/Tutorial.pod">Test::Tutorial</a>, part of the Test::Simple distro </li> <li> <a href="http://petdance.com/perl/automated-testing/">Automated Testing With Perl</a>, a presentation by Andy Lester </li> </ul> </div> <div class="container-fluid space-top-xl"> <footer class="row"> <div class="footer"> <ul class="col-xs-12 col-sm-2 list-unstyled"> <li><h4>Perl.org</h4></li> <li><a href="http://www.perl.org/">www</a></li> <li><a href="http://blogs.perl.org/">blogs</a></li> <li><a href="http://jobs.perl.org/">jobs</a></li> <li><a href="http://learn.perl.org/">learn</a></li> <li><a href="http://dev.perl.org/">dev</a></li> </ul> <ul class="col-xs-12 col-sm-2 list-unstyled"> <li><h4>Connect</h4></li> <li><a href="/siteinfo.html">Site Info</a></li> <!--li><a href="#" class="links">Facebook</a></li> <li><a href="#" class="links">Twitter</a></li--> </ul> <div class="col-xs-12 footer-info"> <p class="copyright"> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="https://cdn.perl.org/perlweb/images/icons/creativecommons-by-nc-nd-3.0-us-80x15.png" /></a> 漏 2002-2025 Perl.org </p> </div> </div> </footer> </div> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-50555-4"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-50555-4', { 'link_attribution': true, 'custom_map': {'dimension1': 'protocol'} }); gtag('event', 'pageload', {'protocol': window.location.protocol}); </script> <script type="text/javascript" src="https://cdn.perl.org/perlweb/js/perlweb_bootstrap.min.js" charset="UTF-8"></script> </body> </html>