File: fs_test.go

package info (click to toggle)
golang-procfs 0%2Bgit20161206.fcdb11c-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch, stretch-backports
  • size: 264 kB
  • sloc: makefile: 12
file content (13 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package procfs

import "testing"

func TestNewFS(t *testing.T) {
	if _, err := NewFS("foobar"); err == nil {
		t.Error("want NewFS to fail for non-existing mount point")
	}

	if _, err := NewFS("procfs.go"); err == nil {
		t.Error("want NewFS to fail if mount point is not a directory")
	}
}