File Coverage

blib/lib/Config/Model/models/LCDd/irtrans.pl
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   8117 use strict;
  1         3  
  1         34  
2 1     1   6 use warnings;
  1         2  
  1         79  
3              
4             return [
5             {
6             'class_description' => 'generated from LCDd.conf',
7             'element' => [
8             'Backlight',
9             {
10             'description' => 'Does the device have a backlight? ',
11             'type' => 'leaf',
12             'upstream_default' => 'no',
13             'value_type' => 'boolean',
14             'write_as' => [
15             'no',
16             'yes'
17             ]
18             },
19             'Hostname',
20             {
21             'description' => 'IRTrans device to connect to ',
22             'type' => 'leaf',
23             'upstream_default' => 'localhost',
24             'value_type' => 'uniline'
25             },
26             'Size',
27             {
28             'default' => '16x2',
29             'description' => 'display dimensions',
30             'type' => 'leaf',
31             'value_type' => 'uniline'
32             }
33             ],
34             'name' => 'LCDd::irtrans'
35             }
36             ]
37             ;
38