diff options
author | dakkar <dakkar@thenautilus.net> | 2016-10-21 18:16:37 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2016-10-21 18:21:16 +0100 |
commit | 84c62cf337d4acb89266532ed469f3cb35545f76 (patch) | |
tree | c526850acd77d0531024284fd8dd4a62941bd1e1 /t/lib/Test | |
parent | notes on footer (diff) | |
download | Sietima-84c62cf337d4acb89266532ed469f3cb35545f76.tar.gz Sietima-84c62cf337d4acb89266532ed469f3cb35545f76.tar.bz2 Sietima-84c62cf337d4acb89266532ed469f3cb35545f76.zip |
fix test library for newer Test2::Compare
hash/bag/array no longer default to etc(), so we have to be explicit
Diffstat (limited to 't/lib/Test')
-rw-r--r-- | t/lib/Test/Sietima.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/lib/Test/Sietima.pm b/t/lib/Test/Sietima.pm index 7b2a6ae..94811d2 100644 --- a/t/lib/Test/Sietima.pm +++ b/t/lib/Test/Sietima.pm @@ -85,6 +85,7 @@ sub deliveries_are (%args) { field to => bag { item $_ for $m->{to}->@*; }; + etc(); }; } else { @@ -92,6 +93,7 @@ sub deliveries_are (%args) { call [cast=>'Email::MIME'] => $m; }; } + etc(); }; } end(); @@ -108,7 +110,9 @@ sub deliveries_are (%args) { } end(); }; + etc(); }; + etc(); }; end(); }; |