1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
NAME
Test::Future::IO::Impl - acceptance tests for Future::IO
implementations
SYNOPSIS
use Test::More;
use Test::Future::IO::Impl;
use Future::IO;
use Future::IO::Impl::MyNewImpl;
run_tests 'sleep';
done_testing;
DESCRIPTION
This module contains a collection of acceptance tests for
implementations of Future::IO.
FUNCTIONS
run_tests
run_tests @suitenames
Runs a collection of tests against Future::IO. It is expected that the
caller has already loaded the specific implementation module to be
tested against before this function is called.
TEST SUITES
The following test suite names may be passed to the "run_tests"
function:
accept
Tests the Future::IO->accept method.
connect
Tests the Future::IO->connect method.
sleep
Tests the Future::IO->sleep method.
sysread
Tests the Future::IO->sysread method.
syswrite
Tests the Future::IO->syswrite method.
waitpid
Tests the Future::IO->waitpid method.
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
|