File Coverage

blib/lib/Net/Posterous/Media/Audio.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             package Net::Posterous::Media::Audio;
2              
3 1     1   6 use strict;
  1         2  
  1         36  
4 1     1   6 use base qw(Net::Posterous::Object);
  1         2  
  1         83  
5              
6 1     1   7 use Class::Accessor "antlers";
  1         2  
  1         6  
7              
8             =head1 NAME
9              
10             Net::Posterous::Media::Audio - represent an audio object in Net::Posterous
11              
12             =head1 METHODS
13              
14             =cut
15              
16             =head2 url
17              
18             Get or set the url for this Audio object.
19              
20             =cut
21              
22             has url => ( is => "rw", isa => "Str" );
23              
24              
25             =head2 filesize
26              
27             Get or set the filesize for this Audio object.
28              
29             =cut
30             has filesize => ( is => "rw", isa => "Str" );
31              
32             1;