File Coverage

blib/lib/Device/Gsm/Sms/Token/DA.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # Sms::Token::DA - SMS DA (destination address) token
2             # Copyright (C) 2002-2006 Cosimo Streppone, cosimo@cpan.org
3             #
4             # This program is free software; you can redistribute it and/or modify
5             # it only under the terms of Perl itself.
6             #
7             # This program is distributed in the hope that it will be useful,
8             # but WITHOUT ANY WARRANTY; without even the implied warranty of
9             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10             # Perl licensing terms for details.
11             #
12             # $Id$
13              
14             package Sms::Token::DA;
15 1     1   7 use integer;
  1         2  
  1         6  
16 1     1   33 use strict;
  1         2  
  1         32  
17 1     1   740 use Device::Gsm::Sms::Token::OA;
  1         4  
  1         51  
18              
19             @Sms::Token::DA::ISA = ('Sms::Token::OA');
20              
21             1;