File Coverage

blib/lib/Config/Model/models/Fstab/Ext2FsOpt.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             #
2             # This file is part of Config-Model
3             #
4             # This software is Copyright (c) 2005-2022 by Dominique Dumont.
5             #
6             # This is free software, licensed under:
7             #
8             # The GNU Lesser General Public License, Version 2.1, February 1999
9             #
10 1     1   409 use strict;
  1         2  
  1         31  
11 1     1   4 use warnings;
  1         2  
  1         106  
12              
13             return [
14             {
15             'accept' => [
16             '.*',
17             {
18             'description' => 'unknown parameter',
19             'type' => 'leaf',
20             'value_type' => 'uniline'
21             }
22             ],
23             'author' => [
24             'Dominique Dumont'
25             ],
26             'copyright' => [
27             '2010,2011 Dominique Dumont'
28             ],
29             'element' => [
30             'acl',
31             {
32             'type' => 'leaf',
33             'value_type' => 'boolean'
34             },
35             'user_xattr',
36             {
37             'description' => 'Support "user." extended attributes ',
38             'type' => 'leaf',
39             'value_type' => 'boolean'
40             },
41             'statfs_behavior',
42             {
43             'choice' => [
44             'bsddf',
45             'minixdf'
46             ],
47             'type' => 'leaf',
48             'value_type' => 'enum'
49             },
50             'errors',
51             {
52             'choice' => [
53             'continue',
54             'remount-ro',
55             'panic'
56             ],
57             'type' => 'leaf',
58             'value_type' => 'enum'
59             }
60             ],
61             'include' => [
62             'Fstab::CommonOptions'
63             ],
64             'license' => 'LGPL2',
65             'name' => 'Fstab::Ext2FsOpt'
66             }
67             ]
68             ;
69