File Coverage

blib/lib/WWW/TypePad/Blogs.pm
Criterion Covered Total %
statement 6 67 8.9
branch n/a
condition n/a
subroutine 2 23 8.7
pod 0 21 0.0
total 8 111 7.2


line stmt bran cond sub pod time code
1             package WWW::TypePad::Blogs;
2             ### BEGIN auto-generated
3             ### This is an automatically generated code, do not edit!
4             ### Scroll down to look for END to add additional methods
5              
6 1     1   4 use strict;
  1         1  
  1         30  
7 1     1   3 use Any::Moose;
  1         1  
  1         4  
8             extends 'WWW::TypePad::Noun';
9              
10 0     0 0   sub prefix { '/blogs' }
11              
12             sub get {
13 0     0 0   my $api = shift;
14 0           my $id = shift;
15 0           $api->_get($id);
16             }
17              
18             sub post_by_email_settings {
19 0     0 0   my $api = shift;
20 0           my $id = shift;
21 0           $api->_get($id, 'post-by-email-settings', undef, undef, @_);
22             }
23              
24             sub post_by_email_settings_by_user {
25 0     0 0   my $api = shift;
26 0           my $id = shift;
27 0           $api->_get($id, 'post-by-email-settings', 'by_user', @_);
28             }
29              
30             sub stats {
31 0     0 0   my $api = shift;
32 0           my $id = shift;
33 0           $api->_get($id, 'stats', undef, undef, );
34             }
35              
36             sub categories {
37 0     0 0   my $api = shift;
38 0           my $id = shift;
39 0           $api->_get($id, 'categories', undef, undef, @_);
40             }
41              
42             sub comments {
43 0     0 0   my $api = shift;
44 0           my $id = shift;
45 0           $api->_get($id, 'comments', undef, undef, );
46             }
47              
48             sub published_comments {
49 0     0 0   my $api = shift;
50 0           my $id = shift;
51 0           $api->_get($id, 'comments', 'published', undef, );
52             }
53              
54             sub crosspost_accounts {
55 0     0 0   my $api = shift;
56 0           my $id = shift;
57 0           $api->_get($id, 'crosspost-accounts', undef, undef, @_);
58             }
59              
60             sub commenting_settings {
61 0     0 0   my $api = shift;
62 0           my $id = shift;
63 0           $api->_get($id, 'commenting-settings', undef, undef, @_);
64             }
65              
66             sub page_assets {
67 0     0 0   my $api = shift;
68 0           my $id = shift;
69 0           $api->_get($id, 'page-assets', undef, undef, @_);
70             }
71              
72             sub new_page_asset {
73 0     0 0   my $api = shift;
74 0           my $id = shift;
75 0           $api->_post($id, 'page-assets', undef, undef, @_);
76             }
77              
78             sub post_assets {
79 0     0 0   my $api = shift;
80 0           my $id = shift;
81 0           $api->_get($id, 'post-assets', undef, undef, @_);
82             }
83              
84             sub published_post_assets {
85 0     0 0   my $api = shift;
86 0           my $id = shift;
87 0           $api->_get($id, 'post-assets', 'published', undef, @_);
88             }
89              
90             sub post_assets_by_category {
91 0     0 0   my $api = shift;
92 0           my $id = shift;
93 0           $api->_get($id, 'post-assets', 'by_category', @_);
94             }
95              
96             sub post_assets_by_month {
97 0     0 0   my $api = shift;
98 0           my $id = shift;
99 0           $api->_get($id, 'post-assets', 'by_month', @_);
100             }
101              
102             sub recent_post_assets {
103 0     0 0   my $api = shift;
104 0           my $id = shift;
105 0           $api->_get($id, 'post-assets', 'recent', undef, @_);
106             }
107              
108             sub new_post_asset {
109 0     0 0   my $api = shift;
110 0           my $id = shift;
111 0           $api->_post($id, 'post-assets', undef, undef, @_);
112             }
113              
114              
115             sub remove_category {
116 0     0 0   my $api = shift;
117 0           my $id = shift;
118 0           $api->_post($id, 'remove-category', undef, undef, @_);
119             }
120              
121             sub add_category {
122 0     0 0   my $api = shift;
123 0           my $id = shift;
124 0           $api->_post($id, 'add-category', undef, undef, @_);
125             }
126              
127             sub discover_external_post_asset {
128 0     0 0   my $api = shift;
129 0           my $id = shift;
130 0           $api->_post($id, 'discover-external-post-asset', undef, undef, @_);
131             }
132              
133             ### END auto-generated
134              
135              
136              
137              
138             1;