2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-26 12:32:36 +00:00
restic/vendor/bazil.org/fuse/options_helper_test.go
2017-07-23 14:25:38 +02:00

11 lines
191 B
Go

package fuse
// for TestMountOptionCommaError
func ForTestSetMountOption(k, v string) MountOption {
fn := func(conf *mountConfig) error {
conf.options[k] = v
return nil
}
return fn
}