1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00
restic/vendor/bazil.org/fuse/options_helper_test.go

11 lines
191 B
Go
Raw Normal View History

2017-07-23 14:24:45 +02:00
package fuse
// for TestMountOptionCommaError
func ForTestSetMountOption(k, v string) MountOption {
fn := func(conf *mountConfig) error {
conf.options[k] = v
return nil
}
return fn
}