We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2de5f commit 193319bCopy full SHA for 193319b
mock/mock_no_objx.go
@@ -0,0 +1,5 @@
1
+//go:build testify_no_objx || testify_no_deps
2
+
3
+package mock
4
5
+type testData = struct{}
mock/mock_objx.go
@@ -2,6 +2,8 @@
// maintenance of downstream forks that remove that dependency.
// See https://github.com/stretchr/testify/issues/1752
+//go:build !testify_no_objx && !testify_no_deps
6
7
package mock
8
9
import "github.com/stretchr/objx"
mock/mock_objx_test.go
@@ -1,3 +1,5 @@
import (
0 commit comments