mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
16 lines
256 B
Go
16 lines
256 B
Go
package sysfs
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"gobot.io/x/gobot/gobottest"
|
|
)
|
|
|
|
func TestFilesystemOpen(t *testing.T) {
|
|
SetFilesystem(&NativeFilesystem{})
|
|
file, err := OpenFile(os.DevNull, os.O_RDONLY, 666)
|
|
gobottest.Assert(t, err, nil)
|
|
var _ File = file
|
|
}
|