File Coverage

blib/lib/Config/Model/models/LCDd/curses.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   79761 use strict;
  1         4  
  1         50  
2 1     1   6 use warnings;
  1         3  
  1         138  
3              
4             return [
5             {
6             'class_description' => 'generated from LCDd.conf',
7             'element' => [
8             'Background',
9             {
10             'description' => 'background color when "backlight" is off ',
11             'type' => 'leaf',
12             'upstream_default' => 'cyan',
13             'value_type' => 'uniline'
14             },
15             'Backlight',
16             {
17             'description' => 'background color when "backlight" is on ',
18             'type' => 'leaf',
19             'upstream_default' => 'red',
20             'value_type' => 'uniline'
21             },
22             'DrawBorder',
23             {
24             'description' => 'draw Border ',
25             'type' => 'leaf',
26             'upstream_default' => 'yes',
27             'value_type' => 'boolean',
28             'write_as' => [
29             'no',
30             'yes'
31             ]
32             },
33             'Foreground',
34             {
35             'description' => 'color settings
36             foreground color ',
37             'type' => 'leaf',
38             'upstream_default' => 'blue',
39             'value_type' => 'uniline'
40             },
41             'Size',
42             {
43             'description' => 'display size ',
44             'type' => 'leaf',
45             'upstream_default' => '20x4',
46             'value_type' => 'uniline'
47             },
48             'TopLeftX',
49             {
50             'default' => '7',
51             'description' => 'What position (X,Y) to start the left top corner at...
52             Default: (7,7)',
53             'type' => 'leaf',
54             'value_type' => 'uniline'
55             },
56             'TopLeftY',
57             {
58             'default' => '7',
59             'type' => 'leaf',
60             'value_type' => 'uniline'
61             },
62             'UseACS',
63             {
64             'description' => 'use ASC symbols for icons & bars ',
65             'type' => 'leaf',
66             'upstream_default' => 'no',
67             'value_type' => 'boolean',
68             'write_as' => [
69             'no',
70             'yes'
71             ]
72             }
73             ],
74             'name' => 'LCDd::curses'
75             }
76             ]
77             ;
78