Sharp.Augeas/Sharp.Augeas.Test/lens/tests/test_fuse.aug

23 lines
590 B
Plaintext
Raw Normal View History

2022-11-08 20:57:02 +03:00
(*
Module: Test_Fuse
Provides unit tests and examples for the <Fuse> lens.
*)
module Test_Fuse =
(* Variable: conf *)
let conf = "# Set the maximum number of FUSE mounts allowed to non-root users.
mount_max = 1000
# Allow non-root users to specify the 'allow_other' or 'allow_root'
user_allow_other
"
(* Test: Fuse.lns *)
test Fuse.lns get conf =
{ "#comment" = "Set the maximum number of FUSE mounts allowed to non-root users." }
{ "mount_max" = "1000" }
{ }
{ "#comment" = "Allow non-root users to specify the 'allow_other' or 'allow_root'" }
{ "user_allow_other" }