Bump to 1.14.1
[platform/upstream/augeas.git] / lenses / tests / test_shells.aug
1 (* Test for shells lens *)
2
3 module Test_shells =
4
5    let conf = "# this is a comment
6
7 /bin/bash
8 /bin/tcsh
9 /opt/csw/bin/bash   # CSWbash
10 "
11
12    test Shells.lns get conf =
13       { "#comment" = "this is a comment" }
14       {}
15       { "1" = "/bin/bash" }
16       { "2" = "/bin/tcsh" }
17       { "3" = "/opt/csw/bin/bash"
18         { "#comment" = "CSWbash" } }