You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Text-Tabs+Wrap-2013.0523-418.lbn25.noarch
Text::Tabs performs the same job that the UNIX expand(1) and unexpand(1) commands do: adding or removing tabs from a document. Text::Wrap::wrap() will reformat lines into paragraphs. All it does is break up long lines, it will not join short lines together.
RPMPackage perl-Text-ParseWords-3.30-418.lbn25.noarch
The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. quotewords() returns all of the tokens in a single long list, while nested_quotewords() returns a list of token lists corresponding to the elements of @lines. parse_line() does tokenizing on a single string. The quotewords() functions simply call &parse_line(), so if you're only splitting one line you can call parse_line() directly and save a function call.
RPMPackage perl-Text-Glob-0.11-7.lbn25.noarch
Text::Glob implements glob(3) style matching that can be used to match against text, rather than fetching names from a file-system. If you want to do full file globbing use the File::Glob module instead.
RPMPackage perl-Text-Diff-1.45-5.lbn25.noarch
Text::Diff provides a basic set of services akin to the GNU diff utility. It is not anywhere near as feature complete as GNU diff, but it is better integrated with Perl and available on all platforms. It is often faster than shelling out to a system's diff executable for small files, and generally slower on larger files.
RPMPackage perl-Text-Balanced-2.03-418.lbn25.noarch
These Perl subroutines may be used to extract a delimited substring, possibly after skipping a specified prefix string.
RPMPackage perl-Test-Warnings-0.026-10.lbn25.noarch
If you've ever tried to use Test::NoWarnings to confirm there are no warnings generated by your tests, combined with the convenience of done_testing to not have to declare a test count, you'll have discovered that these two features do not play well together, as the test count will be calculated before the warnings test is run, resulting in a TAP error (see examples/test_nowarnings.pl in this distribution for a demonstration). This module is intended to be used as a drop-in replacement for Test::NoWarnings: it also adds an extra test, but runs this test before done_testing calculates the test count, rather than after. It does this by hooking into done_testing as well as via an END block. You can declare a plan, or not, and things will still Just Work. It is actually equivalent to: use Test::NoWarnings 1.04 ':early'; as warnings are still printed normally as they occur. You are safe, and enthusiastically encouraged, to perform a global search-replace of the above with use Test::Warnings; whether or not your tests have a plan.
RPMPackage perl-Test-TypeTiny-1.004004-2.lbn25.noarch
Test::TypeTiny module.
RPMPackage perl-Test-Simple-1.302164-1.lbn25.noarch
This package provides the bulk of the core testing facilities. For more information, see perldoc for Test::Simple, Test::More, etc. This package is the CPAN component of the dual-lifed core package Test-Simple.
RPMPackage perl-Test-Requires-0.10-15.lbn25.noarch
Test::Requires checks to see if the module can be loaded. If this fails, rather than failing tests this skips all tests.
RPMPackage perl-Test-Pod-Coverage-1.10-13.lbn25.noarch
Test::Pod::Coverage is used to create a test for your distribution, to ensure that all relevant files in your distribution are appropriately documented in pod.
RPMPackage perl-Test-Pod-1.52-4.lbn25.noarch
Check POD files for errors or warnings in a test file, using Pod::Simple to do the heavy lifting.
RPMPackage perl-Test-Mouse-2.4.5-6.fc25.x86_64
This module provides some useful test functions for Mouse based classes. It is an experimental first release, so comments and suggestions are very welcome.
RPMPackage perl-Test-Moose-2.1806-1.fc25.x86_64
This module provides some useful test functions for Moose based classes. It is an experimental first release, so comments and suggestions are very welcome.
RPMPackage perl-Test-LeakTrace-0.15-9.fc25.x86_64
Test::LeakTrace provides several functions that trace memory leaks. This module scans arenas, the memory allocation system, so it can detect any leaked SVs in given blocks. Leaked SVs are SVs that are not released after the end of the scope they have been created. These SVs include global variables and internal caches. For example, if you call a method in a tracing block, perl might prepare a cache for the method. Thus, to trace true leaks, no_leaks_ok() and leaks_cmp_ok() executes a block more than once.
RPMPackage perl-Test-Harness-3.42-419.lbn25.noarch
This package allows tests to be run and results automatically aggregated and output to STDOUT. Although, for historical reasons, the Test-Harness distribution takes its name from this module it now exists only to provide TAP::Harness with an interface that is somewhat backwards compatible with Test::Harness 2.xx. If you're writing new code consider using TAP::Harness directly instead.
RPMPackage perl-Test-Fatal-0.014-12.lbn25.noarch
Test::Fatal is an alternative to the popular Test::Exception. It does much less, but should allow greater flexibility in testing exception-throwing code with about the same amount of typing.
RPMPackage perl-Test-Deep-1.128-4.lbn25.noarch
Test::Deep gives you very flexible ways to check that the result you got is the result you were expecting. At its simplest it compares two structures by going through each level, ensuring that the values match, that arrays and hashes have the same elements and that references are blessed into the correct class. It also handles circular data structures without getting caught in an infinite loop.
RPMPackage perl-Test-1.31-436.lbn25.1.noarch
The Test Perl module simplifies the task of writing test files for Perl modules, such that their output is in the format that Test::Harness expects to see.
RPMPackage perl-Term-Cap-1.17-418.lbn25.noarch
These are low-level functions to extract and use capabilities from a terminal capability (termcap) database.
RPMPackage perl-Term-ANSIColor-4.06-419.lbn25.noarch
This module has two interfaces, one through color() and colored() and the other through constants. It also offers the utility functions uncolor(), colorstrip(), colorvalid(), and coloralias(), which have to be explicitly imported to be used.