The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:Test-Simple Test::Exception"

Test2::Event::Exception - Exception event River stage five • 22891 direct dependents • 32646 total dependents

An exception event will display to STDERR, and will prevent the overall test file from passing....

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 • 22891 direct dependents • 32646 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 • 22891 direct dependents • 32646 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::Builder - Backend for building test libraries River stage five • 22891 direct dependents • 32646 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::API - Primary interface for writing Test2 based testing tools. River stage five • 22891 direct dependents • 32646 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

Test2::Util - Tools used by Test2 and friends. River stage five • 22891 direct dependents • 32646 total dependents

Collection of tools used by Test2 and friends....

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

Test2::Event - Base class for events River stage five • 22891 direct dependents • 32646 total dependents

Base class for all event objects that get passed through Test2....

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

Test2::Transition - Transition notes when upgrading to Test2 River stage five • 22891 direct dependents • 32646 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 • 22891 direct dependents • 32646 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::Module - Base class for test modules River stage five • 22891 direct dependents • 32646 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

Test2::Tools::Tiny - Tiny set of tools for unfortunate souls who cannot use Test2::Suite. River stage five • 22891 direct dependents • 32646 total dependents

You should really look at Test2::Suite. This package is some very basic essential tools implemented using Test2. This exists only so that Test2 and other tools required by Test2::Suite can be tested. This is the package Test2 uses to test itself....

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

Test2::API::Context - Object to represent a testing context. River stage five • 22891 direct dependents • 32646 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::Util::HashBase - Build hash based classes. River stage five • 22891 direct dependents • 32646 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::EventFacet::Error - Facet for errors that need to be shown. River stage five • 22891 direct dependents • 32646 total dependents

This facet is used when an event needs to convey errors....

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

Test2::EventFacet::Trace - Debug information for events River stage five • 22891 direct dependents • 32646 total dependents

The Test2::API::Context object, as well as all Test2::Event types need to have access to information about where they were created. This object represents that information....

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 • 22891 direct dependents • 32646 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

Test2::API::InterceptResult - Representation of a list of events. River stage five • 22891 direct dependents • 32646 total dependents

This class represents a list of events, normally obtained using "intercept()" from Test2::API. This class is intended for people who with to verify the results of test tools they write. This class provides methods to normalize, summarize, or map the ...

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

Test2::API::InterceptResult::Event - Representation of an event for use in testing other test tools. River stage five • 22891 direct dependents • 32646 total dependents

"intercept { ... }" from Test2::API returns an instance of Test2::API::InterceptResult which is a blessed arrayref of Test2::API::InterceptResult::Event objects. This POD documents the methods of these events, which are mainly provided for you to use...

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

Test2::Hub::Interceptor::Terminator - Exception class used by Test2::Hub::Interceptor River stage five • 22891 direct dependents • 32646 total dependents

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