summaryrefslogtreecommitdiff
path: root/t/00use.t
diff options
context:
space:
mode:
Diffstat (limited to 't/00use.t')
-rw-r--r--t/00use.t35
1 files changed, 35 insertions, 0 deletions
diff --git a/t/00use.t b/t/00use.t
new file mode 100644
index 0000000..268ef56
--- /dev/null
+++ b/t/00use.t
@@ -0,0 +1,35 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+
+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::Resolver" );
+
+use_ok( "IO::Async::Protocol" );
+use_ok( "IO::Async::Protocol::Stream" );
+use_ok( "IO::Async::Protocol::LineStream" );
+
+done_testing;