diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-03 20:19:06 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-11-03 20:19:31 +0100 |
commit | 87e93574a5da99b5f36751a4219caacc4e81ea3c (patch) | |
tree | f27cc7e90614271e37566eb2c59e4645277401e3 /test/lib/Exim | |
parent | b1227303735a346c79fd0734c9efb5d13609ad55 (diff) |
Testsuite: Exim::Runtest uses parent Exporter
Diffstat (limited to 'test/lib/Exim')
-rw-r--r-- | test/lib/Exim/Runtest.pm | 7 |
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 |