aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2015-12-06 18:07:19 -0500
committerZoffix Znet <cpan@zoffix.com>2015-12-06 18:07:19 -0500
commitd2da9fcd250533bee5df17bd182648a8cea0d7b0 (patch)
treefca0431ce3639d5a2ac85a69c4fe9f05717be789 /t
parentba793ec6d1d4c66300f40cbced25f9ffd23ec792 (diff)
Prerelease
Diffstat (limited to 't')
-rw-r--r--t/00-use.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/00-use.t b/t/00-use.t
new file mode 100644
index 0000000..a46bca0
--- /dev/null
+++ b/t/00-use.t
@@ -0,0 +1,13 @@
+#!perl6
+
+use lib 'lib';
+use Test;
+
+use-ok 'IRC::Client';
+use-ok 'IRC::Grammar';
+use-ok 'IRC::Grammar::Actions';
+use-ok 'IRC::Parser';
+use-ok 'IRC::Client::Plugin::Debugger';
+use-ok 'IRC::Client::Plugin::PingPong';
+
+done-testing;