summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2016-11-03 20:19:06 +0100
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2016-11-03 20:19:31 +0100
commit87e93574a5da99b5f36751a4219caacc4e81ea3c (patch)
treef27cc7e90614271e37566eb2c59e4645277401e3 /test/lib
parentb1227303735a346c79fd0734c9efb5d13609ad55 (diff)
downloadexim4-87e93574a5da99b5f36751a4219caacc4e81ea3c.tar.gz
Testsuite: Exim::Runtest uses parent Exporter
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/Exim/Runtest.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm
index 845388b8b..851c29d3b 100644
--- a/test/lib/Exim/Runtest.pm
+++ b/test/lib/Exim/Runtest.pm
@@ -1,9 +1,16 @@
package Exim::Runtest;
+use 5.010;
use strict;
use warnings;
use IO::Socket::INET;
use Carp;
+use parent 'Exporter';
+our @EXPORT_OK = qw(mailgroup dynamic_socket);
+our %EXPORT_TAGS = (
+ all => \@EXPORT_OK,
+);
+
use List::Util qw'shuffle';
=head1 NAME