File Coverage

blib/lib/Config/Model/models/LCDd/tyan.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   6709 use strict;
  1         2  
  1         39  
2 1     1   5 use warnings;
  1         3  
  1         79  
3              
4             return [
5             {
6             'class_description' => 'generated from LCDd.conf',
7             'element' => [
8             'Device',
9             {
10             'description' => 'Select the output device to use ',
11             'type' => 'leaf',
12             'upstream_default' => '/dev/lcd',
13             'value_type' => 'uniline'
14             },
15             'Size',
16             {
17             'description' => 'set display size ',
18             'type' => 'leaf',
19             'upstream_default' => '16x2',
20             'value_type' => 'uniline'
21             },
22             'Speed',
23             {
24             'choice' => [
25             '4800',
26             '9600'
27             ],
28             'description' => 'Set the communication speed ',
29             'type' => 'leaf',
30             'upstream_default' => '9600',
31             'value_type' => 'enum'
32             }
33             ],
34             'name' => 'LCDd::tyan'
35             }
36             ]
37             ;
38