aboutsummaryrefslogtreecommitdiff
path: root/test.pl
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2020-04-04 00:21:47 +1300
committerDavid Phillips <david@yeah.nah.nz>2020-04-04 13:19:55 +1300
commit7744defa1f8a5f1b54d8eb78657bd2c8d73df29f (patch)
tree17aa70627d43b251a8265891198ef02a30439705 /test.pl
parentb4eb42636ebe66192d0e531bc691b6f38debfbde (diff)
downloadidalius-7744defa1f8a5f1b54d8eb78657bd2c8d73df29f.tar.xz
WIP: Start writing some plugin tests
Diffstat (limited to 'test.pl')
-rwxr-xr-xtest.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/test.pl b/test.pl
new file mode 100755
index 0000000..a64e986
--- /dev/null
+++ b/test.pl
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+
+use Test::Harness;
+
+my @t = (
+ "test/test_autojoin.t",
+ "test/test_echo.t",
+ "test/test_ping.t",
+);
+
+runtests(@t);