5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-14 18:13:45 +00:00

Delete unused test helpers

This commit is contained in:
Tom Proctor 2022-04-26 14:24:41 +01:00
parent 7b49e2b84c
commit b904025b30
No known key found for this signature in database
GPG key ID: 9AA1838744D16345

View file

@ -289,15 +289,3 @@ function mockInput(secrets) {
.calledWith('secrets', expect.anything())
.mockReturnValueOnce(secrets);
}
function mockEngineName(name) {
when(core.getInput)
.calledWith('path', expect.anything())
.mockReturnValueOnce(name);
}
function mockVersion(version) {
when(core.getInput)
.calledWith('kv-version', expect.anything())
.mockReturnValueOnce(version);
}