mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 23:57:01 +02:00
16 lines
226 B
Go
16 lines
226 B
Go
package disk
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/vault/command/token"
|
|
)
|
|
|
|
func TestCommand(t *testing.T) {
|
|
token.TestProcess(t)
|
|
}
|
|
|
|
func TestHelperProcess(t *testing.T) {
|
|
token.TestHelperProcessCLI(t, new(Command))
|
|
}
|