Ports Search

Results 12,60112,610 of 19,819 for %22HTTP Server%22.(0.013 seconds)
devel/Test-Bits-0.02 (Score: 9.2878623E-4)
Provides a bits_is() subroutine for testing binary data
Test::Bits provides a single subroutine, bits_is(), for testing binary data. This module is quite similar to Test::BinaryData and Test::HexString in concept. The difference is that this module shows failure diagnostics in a different way, and has a slightly different calling style. Depending on the nature of the data you're working with, this module may be easier to work with.
devel/Test-Block-0.13 (Score: 9.2878623E-4)
Specify fine granularity test plans
This module allows you to specify the number of expected tests at a finer level of granularity than an entire test script. It is built with Test::Builder and plays happily with Test::More and friends.
devel/Test-CheckDeps-0.010 (Score: 9.2878623E-4)
Check for presence of dependencies
Test::CheckDeps adds a test that assures all dependencies have been installed properly. If requested, it can bail out all testing on error.
devel/Test-Class-0.50 (Score: 9.2878623E-4)
Easily create test classes in an xUnit style
Test::Class provides a simple way of creating classes and objects to test your code in an xUnit style. Built using Test::Builder it is designing to work with other Test::Builder based modules (Test::More, Test::Differences, Test::Exception, etc.) Note: This module will make more sense if you are already familiar with the "standard" mechanisms for testing perl code. Those unfamiliar with Test::Harness, Test::Simple, Test::More and friends should go take a look at them now. Note: This is an early release. Things may change. Be warned.
devel/Test-ClassAPI-1.06 (Score: 9.2878623E-4)
Provides basic first-pass API testing for large class trees
For many APIs with large numbers of classes, it can be very useful to be able to do a quick once-over to make sure that classes, methods, and inheritance is correct, before doing more comprehensive testing. This module aims to provide such a capability.
devel/Test-Classy-0.10 (Score: 9.2878623E-4)
Write your unit tests in other modules than *.t
Perl module to allow writing your unit tests in other modules than *.t
devel/Test-CleanNamespaces-0.18 (Score: 9.2878623E-4)
Check for uncleaned imports
Test::CleanNamespaces lets you check your module's namespaces for imported functions you might have forgotten to remove with namespace::autoclean or namespace::clean and are therefore available to be called as methods, which usually isn't want you want.
devel/Test-Object-0.07 (Score: 9.2878623E-4)
Thoroughly testing objects via registered handlers
A testing package designed to allow you to easily test what you believe is a valid object against the expected behaviour of all of the classes in its inheritance tree in one single call.
devel/Test-Cmd-1.09 (Score: 9.2878623E-4)
Portable testing of commands and scripts
The Test::Cmd module provides a low-level framework for portable automated testing of executable commands and scripts (in any language, not just Perl), especially commands and scripts that interact with the file system.
devel/Test-Command-0.11 (Score: 9.2878623E-4)
Test routines for external commands
Test::Command intends to bridge the gap between the well tested functions and objects you choose and their usage in your programs. By examining the exit status, terminating signal, STDOUT and STDERR of your program you can determine if it is behaving as expected. This includes testing the various combinations and permutations of options and arguments as well as the interactions between the various functions and objects that make up your program. The various test functions below can accept either a command string or an array reference for the first argument. If the command is expressed as a string it is passed to system as is. If the command is expressed as an array reference it is dereferenced and passed to system as a list. The final argument for the test functions, $name, is optional. By default the $name is a concatenation of the test function name, the command string and the expected value. This construction is generally sufficient for identifying a failing test, but you may always specify your own $name if desired. Any of the test functions can be used as instance methods on a Test::Command object. This is done by dropping the initial $cmd argument and instead using arrow notation.