summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/prometheus/procfs/fs_test.go
blob: 91f1c6c97635af893a5988e9cc82026693175409 (plain)
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")
	}
}