IM-Engine

 view release on metacpan or  search on metacpan

t/lib/Test/IM/Engine.pm  view on Meta::CPAN

package Test::IM::Engine;
use strict;
use warnings;
use IM::Engine;
use base 'Test::More';

sub import_extra {
    Test::More->export_to_level(2);
    strict->import;
    warnings->import;

    my $caller = caller(1);
    my $engine = IM::Engine->new(
        interface => {
            protocol => 'Test',
            incoming_callback => sub { goto $caller->can('incoming_callback') },
        },
    );



( run in 0.237 second using v1.01-cache-2.11-cpan-299005ec8e3 )