open-vault/builtin/plugin/mock_plugin_test.go
Jim Kalafut 2c737182e4
Import vault-plugin-mock (#9839)
Support testing of CI and GitHub actions by creating a real dependency
between Vault and a plugin. The plugin itself is a no-op.
2020-08-26 12:51:46 -07:00

9 lines
242 B
Go

package plugin
import (
_ "github.com/hashicorp/vault-plugin-mock"
)
// This file exists to force an import of vault-plugin-mock (which itself does nothing),
// for purposes of CI and GitHub actions testing between plugin repos and Vault.