File Coverage

blib/lib/Mail/Transport/Receive.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 19 89.4


line stmt bran cond sub pod time code
1             # This code is part of Perl distribution Mail-Transport version 4.01.
2             # The POD got stripped from this file by OODoc version 3.05.
3             # For contributors see file ChangeLog.
4              
5             # This software is copyright (c) 2001-2025 by Mark Overmeer.
6              
7             # This is free software; you can redistribute it and/or modify it under
8             # the same terms as the Perl 5 programming language system itself.
9             # SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
10              
11              
12             package Mail::Transport::Receive;{
13             our $VERSION = '4.01';
14             }
15              
16 1     1   1429 use parent 'Mail::Transport';
  1         3  
  1         6  
17              
18 1     1   89 use strict;
  1         1  
  1         16  
19 1     1   3 use warnings;
  1         1  
  1         38  
20              
21 1     1   3 use Log::Report 'mail-transport', import => [ ];
  1         1  
  1         6  
22              
23             #--------------------
24              
25 0     0 1   sub receive(@) { $_[0]->notImplemented }
26              
27             #--------------------
28              
29             1;