hybridgroup.gobot/sysfs/fs_test.go

16 lines
268 B
Go
Raw Normal View History

2014-11-08 08:21:39 +08:00
package sysfs
import (
"os"
"testing"
"github.com/hybridgroup/gobot/gobottest"
2014-11-08 08:21:39 +08:00
)
func TestFilesystemOpen(t *testing.T) {
SetFilesystem(&NativeFilesystem{})
file, err := OpenFile(os.DevNull, os.O_RDONLY, 666)
gobottest.Assert(t, err, nil)
2014-11-08 08:21:39 +08:00
var _ File = file
}