aboutsummaryrefslogtreecommitdiff
path: root/test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'test.pl')
-rwxr-xr-xtest.pl10
1 files changed, 4 insertions, 6 deletions
diff --git a/test.pl b/test.pl
index a64e986..fbce463 100755
--- a/test.pl
+++ b/test.pl
@@ -2,10 +2,8 @@
use Test::Harness;
-my @t = (
- "test/test_autojoin.t",
- "test/test_echo.t",
- "test/test_ping.t",
-);
+my @tests = map {"test/test_$_.t"} qw/
+ autojoin echo ping thanks vote
+/;
-runtests(@t);
+runtests(@tests);