Bump to 1.14.1
[platform/upstream/augeas.git] / lenses / tests / test_cobblermodules.aug
1 module Test_cobblermodules =
2
3    let conf = "
4 [serializes]
5 settings = serializer_catalog
6
7 [authentication]
8 modules = auth_denyall
9 "
10
11    test CobblerModules.lns get conf =
12       {}
13       { "serializes"
14          { "settings" = "serializer_catalog" }
15          {} }
16       { "authentication"
17          { "modules" = "auth_denyall" } }
18
19     test CobblerModules.lns put conf after
20        set "serializes/distro" "serializer_catalog";
21        set "serializes/repo" "serializer_catalog"
22     = "
23 [serializes]
24 settings = serializer_catalog
25
26 distro=serializer_catalog
27 repo=serializer_catalog
28 [authentication]
29 modules = auth_denyall
30 "