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