The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:Test-Simple module::test::*"

Test::Builder::Module - Base class for test modules River stage five • 23243 direct dependents • 33164 total dependents

This is a superclass for Test::Builder-based modules. It provides a handful of common functionality and a method of getting at the underlying Test::Builder object. Importing Test::Builder::Module is a subclass of Exporter which means your module is a...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

ok - Alternative to Test::More::use_ok River stage five • 23243 direct dependents • 33164 total dependents

With this module, simply change all "use_ok" in test scripts to "use ok", and they will be executed at "BEGIN" time. Please see Test::use::ok for the full description....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2 - Framework for writing test tools that all work together. River stage five • 23243 direct dependents • 33164 total dependents

Test2 is a new testing framework produced by forking Test::Builder, completely refactoring it, adding many new features and capabilities. WHAT IS NEW? Easier to test new testing tools. From the beginning Test2 was built with introspection capabilitie...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::More - yet another framework for writing test scripts River stage five • 23243 direct dependents • 33164 total dependents

STOP! If you're just getting started writing tests, have a look at Test2::Suite first. This is a drop in replacement for Test::Simple which you can switch to once you get the hang of basic testing. The purpose of this module is to provide a wide rang...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Tester - Ease testing test modules built with Test::Builder River stage five • 23243 direct dependents • 33164 total dependents

If you have written a test module based on Test::Builder then Test::Tester allows you to test it with the minimum of effort....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::use::ok - Alternative to Test::More::use_ok River stage five • 23243 direct dependents • 33164 total dependents

According to the Test::More documentation, it is recommended to run "use_ok()" inside a "BEGIN" block, so functions are exported at compile-time and prototypes are properly honored. That is, instead of writing this: use_ok( 'Some::Module' ); use_ok( ...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Builder - Backend for building test libraries River stage five • 23243 direct dependents • 33164 total dependents

Test::Simple and Test::More have proven to be popular testing modules, but they're not always flexible enough. Test::Builder provides a building block upon which to write your own test libraries *which can work together*. Construction new my $Test = ...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::IPC - Turn on IPC for threading or forking support. River stage five • 23243 direct dependents • 33164 total dependents

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::API - Primary interface for writing Test2 based testing tools. River stage five • 23243 direct dependents • 33164 total dependents

This package exports all the functions necessary to write and/or verify testing tools. Using these building blocks you can begin writing test tools very quickly. You are also provided with tools that help you to test the tools you write....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Simple - Basic utilities for writing tests. River stage five • 23243 direct dependents • 33164 total dependents

** If you are unfamiliar with testing read Test::Tutorial first! ** This is an extremely simple, extremely basic module for writing tests suitable for CPAN modules and other pursuits. If you wish to do more complicated testing, use the Test::More mod...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Tutorial - A tutorial about writing really basic tests River stage five • 23243 direct dependents • 33164 total dependents

*AHHHHHHH!!!! NOT TESTING! Anything but testing! Beat me, whip me, send me to Detroit, but don't make me write tests!* **sob** *Besides, I don't know how to write the damned things.* Is this you? Is writing tests right up there with writing documenta...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::Event::V2 - Second generation event. River stage five • 23243 direct dependents • 33164 total dependents

This is the event type that should be used instead of Test2::Event or its legacy subclasses....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::Transition - Transition notes when upgrading to Test2 River stage five • 23243 direct dependents • 33164 total dependents

This is where gotchas and breakages related to the Test2 upgrade are documented. The upgrade causes Test::Builder to defer to Test2 under the hood. This transition is mostly transparent, but there are a few cases that can trip you up....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::API::Stack - Object to manage a stack of Test2::Hub instances. River stage five • 23243 direct dependents • 33164 total dependents

This module is used to represent and manage a stack of Test2::Hub objects. Hubs are usually in a stack so that you can push a new hub into place that can intercept and handle events differently than the primary hub....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Builder::Tester - test testsuites that have been built with Test::Builder River stage five • 23243 direct dependents • 33164 total dependents

A module that helps you test testing modules that are built with Test::Builder. The testing system is designed to be used by performing a three step process for each test you wish to test. This process starts with using "test_out" and "test_err" in a...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::API::Context - Object to represent a testing context. River stage five • 23243 direct dependents • 33164 total dependents

The context object is the primary interface for authors of testing tools written with Test2. The context object represents the context in which a test takes place (File and Line Number), and provides a quick way to generate events from that context. ...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::API::Breakage - What breaks at what version River stage five • 23243 direct dependents • 33164 total dependents

This module provides lists of modules that are broken, or have been broken in the past, when upgrading Test::Builder to use Test2....

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::Util::HashBase - Build hash based classes. River stage five • 23243 direct dependents • 33164 total dependents

This package is used to generate classes based on hashrefs. Using this class will give you a "new()" method, as well as generating accessors you request. Generated accessors will be getters, "set_ACCESSOR" setters will also be generated for you. You ...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test2::Util::Facets2Legacy - Convert facet data to the legacy event API. River stage five • 23243 direct dependents • 33164 total dependents

This module exports several subroutines from the older event API (see Test2::Event). These subroutines can be used as methods on any object that provides a custom "facet_data()" method. These subroutines can also be used as functions that take a face...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC

Test::Builder::Tester::Color - turn on colour in Test::Builder::Tester River stage five • 23243 direct dependents • 33164 total dependents

Importing this module causes the subroutine color in Test::Builder::Tester to be called with a true value causing colour highlighting to be turned on in debug output. The sole purpose of this module is to enable colour highlighting from the command l...

EXODIST/Test-Simple-1.302199 - 25 Apr 2024 14:14:26 UTC
20 results (0.047 seconds)