aboutsummaryrefslogtreecommitdiff
path: root/test.pl
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2020-04-04 19:34:10 +1300
committerDavid Phillips <david@yeah.nah.nz>2020-04-04 19:36:42 +1300
commitcba83d93d8b47cc044e8d093049d23aba5d8b6ed (patch)
tree042fe5146cfef32a10c132a48292db8f29be7539 /test.pl
parentcdae7275d29c9c370ec7e714dd71af2a1076c0d0 (diff)
downloadidalius-cba83d93d8b47cc044e8d093049d23aba5d8b6ed.tar.xz
Add test plans for Thanks, Vote
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);