File Coverage

blib/lib/Config/Model/models/LCDd/sli.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   6478 use strict;
  1         24  
  1         35  
2 1     1   10 use warnings;
  1         10  
  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             'Speed',
16             {
17             'choice' => [
18             '1200',
19             '2400',
20             '9600',
21             '19200',
22             '38400',
23             '57600',
24             '115200'
25             ],
26             'description' => 'Set the communication speed ',
27             'type' => 'leaf',
28             'upstream_default' => '19200',
29             'value_type' => 'enum'
30             }
31             ],
32             'name' => 'LCDd::sli'
33             }
34             ]
35             ;
36