Imported Upstream version 0.10.0
[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 "
10
11    test Shells.lns get conf =
12       { "#comment" = "this is a comment" }
13       {}
14       { "1" = "/bin/bash" }
15       { "2" = "/bin/tcsh" }