File: 00use.t

package info (click to toggle)
libio-async-perl 0.51-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,052 kB
  • sloc: perl: 11,110; makefile: 8
file content (36 lines) | stat: -rw-r--r-- 892 bytes parent folder | download
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
#!/usr/bin/perl -w

use strict;
use Test::More tests => 24;

use_ok( "IO::Async::MergePoint" );

use_ok( "IO::Async::Notifier" );
use_ok( "IO::Async::Handle" );
use_ok( "IO::Async::Stream" );
use_ok( "IO::Async::Timer" );
use_ok( "IO::Async::Timer::Absolute" );
use_ok( "IO::Async::Timer::Countdown" );
use_ok( "IO::Async::Timer::Periodic" );
use_ok( "IO::Async::Signal" );
use_ok( "IO::Async::Listener" );
use_ok( "IO::Async::Socket" );
use_ok( "IO::Async::File" );
use_ok( "IO::Async::FileStream" );

use_ok( "IO::Async::OS" );

use_ok( "IO::Async::Loop::Select" );
use_ok( "IO::Async::Loop::Poll" );

use_ok( "IO::Async::Test" );

use_ok( "IO::Async::Function" );
use_ok( "IO::Async::DetachedCode" );

use_ok( "IO::Async::Resolver" );
use_ok( "IO::Async::Connector" );

use_ok( "IO::Async::Protocol" );
use_ok( "IO::Async::Protocol::Stream" );
use_ok( "IO::Async::Protocol::LineStream" );