summaryrefslogtreecommitdiff
path: root/vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-07-02 12:12:53 +0200
committerDimitri Sokolyuk <demon@dim13.org>2019-07-02 12:12:53 +0200
commit473acc61c8392dc7ae303d91568e179c4f105a76 (patch)
treea2070cba25f918cda460387e587dd60551b23894 /vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md
parentdd45f63209a8e51979b11182253ee80b5289c10a (diff)
add black list
Diffstat (limited to 'vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md')
-rw-r--r--vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md b/vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md
deleted file mode 100644
index b16da21..0000000
--- a/vendor/github.com/golang/mock/mockgen/tests/custom_package_name/README.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Tests for custom package names
-
-This directory contains test for mockgen generating mocks when imported package
-name does not match import path suffix. For example, package with name "client"
-is located under import path "github.com/golang/mock/mockgen/tests/custom_package_name/client/v1".
-
-Prior to this patch:
-
- $ go generate greeter/greeter.go
- 2018/03/05 22:44:52 Loading input failed: greeter.go:17:11: failed parsing returns: greeter.go:17:14: unknown package "client"
- greeter/greeter.go:1: running "mockgen": exit status 1
-
-This can be fixed by manually providing `-imports` flag, like `-imports client=github.com/golang/mock/mockgen/tests/custom_package_name/client/v1`.
-But, mockgen should be able to automatically resolve package names in such situations.
-
-With this patch applied:
-
- $ go generate greeter/greeter.go
- $ echo $?
- 0
-
-Mockgen runs successfully, produced output is equal to [greeter_mock_test.go](greeter/greeter_mock_test.go) content.