Data-EventStream
view release on metacpan or search on metacpan
t/lib/TestStream.pm view on Meta::CPAN
package TestStream;
use Moose;
use Data::EventStream;
use Test::Most;
has aggregator_class => ( is => 'ro', required => 1 );
has new_params => ( is => 'ro', default => sub { {} } );
has aggregator_params => ( is => 'ro', isa => 'HashRef', required => 1 );
has events => ( is => 'ro', isa => 'ArrayRef', required => 1 );
has time_sub => ( is => 'ro' );
has start_time => ( is => 'ro' );
has expected_time_length => ( is => 'ro' );
has expected_length => ( is => 'ro' );
has no_callbacks => ( is => 'ro', default => 0, );
( run in 0.696 second using v1.01-cache-2.11-cpan-5f2e87ce722 )