summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/go-ps/process_unix_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/go-ps/process_unix_test.go')
-rw-r--r--vendor/github.com/mitchellh/go-ps/process_unix_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/go-ps/process_unix_test.go b/vendor/github.com/mitchellh/go-ps/process_unix_test.go
new file mode 100644
index 0000000..754073e
--- /dev/null
+++ b/vendor/github.com/mitchellh/go-ps/process_unix_test.go
@@ -0,0 +1,11 @@
+// +build linux solaris
+
+package ps
+
+import (
+ "testing"
+)
+
+func TestUnixProcess_impl(t *testing.T) {
+ var _ Process = new(UnixProcess)
+}