NAME Test::Inline - Inlining your tests next to the code being tested DESCRIPTION Embedding tests allows tests to be placed near the code it's testing. This is a nice supplement to the traditional .t files. It's like XUnit, Perl-style. How does it work? "Test::Inline" lets you write small fragments of general or method-specific testing code, and insert it anywhere you want in your modules, inside a specific tagged POD segment, like the following. # A fragment of general test code =begin testing ok( -f /proc/cpuinfo, 'Host has a standard /proc/cpuinfo file' ); =end testing # Completely test a single method =begin testing label # Test generation of the