Ports Search

Results 3,3013,310 of 5,623 for /devel/.(0.005 seconds)
devel/Test-HTML-Tidy-1.00 (Score: 0.032514982)
Test::More-style wrapper around HTML::Tidy
Handy way to check that HTML is valid, according to HTML::Tidy. It is built with Test::Builder and plays happily with Test::More and friends.
devel/Test-Harness-3.36 (Score: 0.032514982)
Run Perl standard test scripts with statistics
You can write test scripts without knowing the exact output this module expects by using "Test" modules. However, by using this module, you can know the specifics, and you can prints some performance statistics that are computed by the Benchmark module.
devel/Test-TableDriven-0.02 (Score: 0.032514982)
Write tests, not scripts that run them
Writing table-driven tests is usually a good idea. Adding a test case doesn't require adding code, so it's easy to avoid fucking up the other tests. However, actually going from a table of tests to a test that runs is non-trivial. Test::TableDriven makes writing the test drivers trivial. You simply define your test cases and write a function that turns the input data into output data to compare against. Test::TableDriven will compute how many tests need to be run, and then run the tests. Concentrate on your data and what you're testing, not plan tests = scalar keys %test_cases> and a big foreach loop.
devel/Test-Taint-1.06 (Score: 0.032514982)
Tools to test taintedness
Tools to test taintedness: "Test::More"-style and helper functions.
devel/Test-HasVersion-0.014 (Score: 0.032514982)
Check Perl modules have version numbers
Test::HasVersion lets you check a Perl module has a version number in a Test::Simple fashion.
devel/Test-Time-0.04 (Score: 0.032514982)
Perl extension to override time()/sleep() core functions for testing
Test::Time can be used to test modules that deal with time. Once you use this module, all references to time and sleep will be internalized. You can set custom time by passing time => number after the use statement.
devel/Test-HexDifferences-1.000 (Score: 0.032514982)
Test binary as hexadecimal string
Test::HexDifferences tests binary as hexadecimal string.
devel/Test-If-0.01 (Score: 0.032514982)
Test only if
Test only if ...
devel/Test-Inline-2.213 (Score: 0.032514982)
Inlining your tests next to the code being tested
Embedding tests allows tests to be placed near the code its testing. This is a nice supplement to the traditional .t files. It's like XUnit, Perl-style. Test::Tutorial is just documentation. To actually get anything done you use pod2test. Read the Test::Inline::Tutorial, really.
devel/Test-JSON-0.11 (Score: 0.032514982)
Test JSON data
JavaScript Object Notation (JSON) is a lightweight data interchange format. Test::JSON makes it easy to verify that you have built valid JSON and that it matches your expected output.