Fix minimalFS on OS X.

geesefs-0-30-9
Aaron Jacobs 2016-02-29 13:38:01 +11:00
parent 3d61726401
commit 38175a2e8b
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import (
"golang.org/x/net/context"
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fuseops"
"github.com/jacobsa/fuse/fuseutil"
)
@ -23,6 +24,12 @@ type minimalFS struct {
fuseutil.NotImplementedFileSystem
}
func (fs *minimalFS) StatFS(
ctx context.Context,
op *fuseops.StatFSOp) (err error) {
return
}
////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////