File Coverage

blib/lib/Template/Declare/TagSet/Bricolage.pm
Criterion Covered Total %
statement 10 10 100.0
branch 4 4 100.0
condition n/a
subroutine 4 4 100.0
pod 2 2 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Template::Declare::TagSet::Bricolage;
2              
3 1     1   82753 use strict;
  1         3  
  1         43  
4 1     1   6 use base 'Template::Declare::TagSet';
  1         3  
  1         1237  
5              
6             sub get_tag_list {
7 1     1 1 77 return [qw(
8             action
9             actions
10             active
11             adstring
12             adstring2
13             assets
14             autopopulated
15             bcc
16             biz_class
17             burner
18             can_be_overridden
19             can_copy
20             can_preview
21             can_publish
22             categories
23             category
24             cc
25             cols
26             contact
27             contacts
28             container
29             content_type
30             contrib_type
31             contributor
32             contributors
33             cookie
34             cover_date
35             data
36             default
37             default_val
38             deploy_date
39             deploy_status
40             description
41             desk
42             desks
43             dest
44             displayed
45             doc_root
46             domain_name
47             element_type
48             element_type_set
49             elements
50             expire_date
51             ext
52             exts
53             field
54             field_type
55             field_types
56             file
57             file_ext
58             file_name
59             filename
60             first_publish_date
61             fixed_uri
62             fixed_uri_format
63             fixed_url
64             fname
65             from
66             handle_other
67             handle_text
68             host_name
69             include
70             includes
71             is_media
72             key_name
73             keyword
74             keywords
75             length
76             lname
77             login
78             manual
79             max_occur
80             max_size
81             media
82             media_type
83             min_occur
84             mname
85             move_method
86             multiple
87             name
88             opt
89             opt_type
90             options
91             opts
92             os
93             output_channel
94             output_channels
95             paginated
96             password
97             path
98             place
99             post_path
100             pre_path
101             precision
102             pref
103             prefix
104             primary_uri
105             priority
106             protocol
107             publish
108             publish_date
109             publish_status
110             related_media
111             related_story
112             repeatable
113             required
114             role
115             rows
116             screen_name
117             server
118             servers
119             site
120             sites
121             size
122             slug
123             sort_name
124             source
125             story
126             subelement_type
127             subelement_types
128             subject
129             suffix
130             template
131             to
132             top_level
133             type
134             uri
135             uri_case
136             uri_format
137             use_slug
138             user
139             val_name
140             value
141             widget_type
142             workflow
143             )];
144             }
145              
146             sub get_alternate_spelling {
147 135 100   135 1 6182 return 'tplate' if $_[1] eq 'template';
148 134 100       296 return 'len' if $_[1] eq 'length';
149 133         278 return;
150             }
151              
152             1;
153              
154             __END__